function NotificationsBasicTests::tearDown in Notifications 6
Same name and namespace in other branches
- 6.2 tests/notifications_api.test \NotificationsBasicTests::tearDown()
Implementation of tearDown().
Overrides DrupalWebTestCase::tearDown
File
- tests/
notifications_api.test, line 161
Class
- NotificationsBasicTests
- Class for testing notifications module. Tests basic API functions
Code
function tearDown() {
// Perform any clean-up tasks.
//variable_del('some_variable');
// The last thing a tearDown() method should always do is call its parent tearDown() method.
parent::tearDown();
}