You are here

public function oa_coreBaseUnitTest::setUp in Open Atrium Core 7.2

One using of this function is to enable the module used for testing, any dependencies or anything else that might be universal for all tests

Overrides DrupalUnitTestCase::setUp

File

tests/oa_coreBase.test, line 83
Provides a base unit test class.

Class

oa_coreBaseUnitTest

Code

public function setUp() {
  parent::setUp();

  //enable module
  $this
    ->enableModule('oa_core');

  // enable dep and other thing for all tests
}