You are here

public function UnitTest::setUp in TacJS 8

Before a test method is run, setUp() is invoked. Create new unit object.

Overrides UnitTestCase::setUp

File

tests/src/Unit/UnitTest.php, line 24

Class

UnitTest
Simple test to ensure that asserts pass.

Namespace

Drupal\tacjs

Code

public function setUp() {
  $this->unit = new TacjsSettings();
  $this->fixture = new Unit();
}