function NodeConvertTestCase::tearDown in Node Convert 6
Same name and namespace in other branches
- 7 node_convert.test \NodeConvertTestCase::tearDown()
Implementation of tearDown().
Overrides DrupalWebTestCase::tearDown
File
- ./
node_convert.test, line 35 - Node convert Simpletest Unit
Class
- NodeConvertTestCase
- @file Node convert Simpletest Unit
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();
}