You are here

public function JsonApiDocumentTopLevelNormalizerTest::tearDown in Drupal 8

Overrides KernelTestBase::tearDown

File

core/modules/jsonapi/tests/src/Kernel/Normalizer/JsonApiDocumentTopLevelNormalizerTest.php, line 186

Class

JsonApiDocumentTopLevelNormalizerTest
@coversDefaultClass \Drupal\jsonapi\Normalizer\JsonApiDocumentTopLevelNormalizer @group jsonapi

Namespace

Drupal\Tests\jsonapi\Kernel\Normalizer

Code

public function tearDown() {
  if ($this->node) {
    $this->node
      ->delete();
  }
  if ($this->term1) {
    $this->term1
      ->delete();
  }
  if ($this->term2) {
    $this->term2
      ->delete();
  }
  if ($this->vocabulary) {
    $this->vocabulary
      ->delete();
  }
  if ($this->user) {
    $this->user
      ->delete();
  }
  if ($this->user2) {
    $this->user2
      ->delete();
  }
}