You are here

function FaqTestCase::tearDown in Frequently Asked Questions 7.2

Same name and namespace in other branches
  1. 6 faq.test \FaqTestCase::tearDown()
  2. 7 faq.test \FaqTestCase::tearDown()

Tear the whole thing down again

Overrides DrupalWebTestCase::tearDown

File

./faq.test, line 62
Test FAQ functionality Base test class. All tests inherits this one. Hugely based on code from the test file block.test by boombatower

Class

FaqTestCase
Base class that is extended by test cases

Code

function tearDown() {

  // Things to tidy up like vars and stuff
  parent::tearDown();
}