FixtureStrategyInterface
in
Base interface for strategies used to manage fixtures for TestCase.
Table of Contents
Methods
- setupTest() : void
- Called before each test run in each TestCase.
- teardownTest() : void
- Called after each test run in each TestCase.
Methods
setupTest()
Called before each test run in each TestCase.
public
setupTest(array<string|int, string> $fixtureNames) : void
Parameters
- $fixtureNames : array<string|int, string>
-
Name of fixtures used by test.
teardownTest()
Called after each test run in each TestCase.
public
teardownTest() : void