You are here

function NodeConvertTestCase::tearDown in Node Convert 7

Same name and namespace in other branches
  1. 6 node_convert.test \NodeConvertTestCase::tearDown()

Implementation of tearDown().

Overrides DrupalWebTestCase::tearDown

File

./node_convert.test, line 41
Node convert Simpletest Unit

Class

NodeConvertTestCase
Class NodeConvertTestCase

Code

function tearDown() {

  // Perform any clean-up tasks.
  // The last thing a tearDown() method should always do is call its parent tearDown() method.
  parent::tearDown();
}