InteractsWithPHPUnit
trait InteractsWithPHPUnit
| internal |
Traits
Properties
| static protected string|bool|null | $cacheApplicationBootstrapFile | Cached application bootstrap file path. |
from InteractsWithTestCase |
| static protected null|array<class-string, class-string> | $cachedTestCaseUses | Cached traits used by test case. |
from InteractsWithTestCase |
| static protected array<int, array{key: class-string, instance: object}> | $testCaseTestingFeatures | Programmatically added class-level testing features. |
from InteractsWithTestCase |
| static protected array<int, array{key: class-string, instance: object}> | $testCaseMethodTestingFeatures | Programmatically added method-level testing features. |
from InteractsWithTestCase |
| protected null|Closure): void | $testCaseSetUpCallback | The cached test case setUp resolver. |
|
| protected null|Closure): void | $testCaseTearDownCallback | The cached test case tearDown resolver. |
|
| static protected array<string, array<int, array{key: class-string, instance: object}>> | $cachedTestCaseClassAttributes | Cached class attributes by class name. |
|
| static protected array<string, array<int, array{key: class-string, instance: object}>> | $cachedTestCaseMethodAttributes | Cached method attributes by "class:method" key. |
|
| null|Application | $app |
Methods
Check if the test case uses a specific trait.
Determine if the test case uses refresh-database testing concerns.
Cache and return traits used by test case.
Programmatically add a testing feature attribute.
Resolve attributes for class (and optionally method).
Execute BeforeEach lifecycle attributes.
Execute AfterEach lifecycle attributes.
Execute BeforeAll lifecycle attributes.
Execute AfterAll lifecycle attributes and clear caches.
Determine if the object is running as a PHPUnit test case.
Resolve the PHPUnit test class name.
Resolve the PHPUnit test method name.
Resolve and cache PHPUnit attributes for current test.
Cache uses for test case before class runs.
Clear PHPUnit caches after class teardown.
Details
in
InteractsWithTestCase at line 54
static bool
usesTestingConcern(string|null $trait = null)
Check if the test case uses a specific trait.
in
InteractsWithTestCase at line 62
static bool
usesRefreshDatabaseTestingConcern()
Determine if the test case uses refresh-database testing concerns.
in
InteractsWithTestCase at line 73
static array
cachedUsesForTestCase()
Cache and return traits used by test case.
in
InteractsWithTestCase at line 87
static void
usesTestingFeature(object $attribute, int $flag = Attribute::TARGET_CLASS)
Programmatically add a testing feature attribute.
at line 110
static protected Collection
resolvePhpUnitAttributesForMethod(string $className, string|null $methodName = null)
Resolve attributes for class (and optionally method).
in
InteractsWithTestCase at line 123
protected void
setUpTheTestEnvironmentUsingTestCase()
Execute BeforeEach lifecycle attributes.
in
InteractsWithTestCase at line 136
protected void
tearDownTheTestEnvironmentUsingTestCase()
Execute AfterEach lifecycle attributes.
in
InteractsWithTestCase at line 167
static void
setUpBeforeClassUsingTestCase()
Execute BeforeAll lifecycle attributes.
in
InteractsWithTestCase at line 178
static void
tearDownAfterClassUsingTestCase()
Execute AfterAll lifecycle attributes and clear caches.
at line 54
bool
isRunningTestCase()
Determine if the object is running as a PHPUnit test case.
at line 64
string|null
resolvePhpUnitTestClassName()
Resolve the PHPUnit test class name.
at line 78
string|null
resolvePhpUnitTestMethodName()
Resolve the PHPUnit test method name.
at line 92
protected Collection
resolvePhpUnitAttributes()
Resolve and cache PHPUnit attributes for current test.
at line 142
void
setUpTheEnvironmentUsing(Closure $setUp)
Define the setUp environment using callback.
at line 152
void
tearDownTheEnvironmentUsing(Closure $tearDown)
Define the tearDown environment using callback.
at line 160
static void
setUpBeforeClassUsingPHPUnit()
Cache uses for test case before class runs.
at line 168
static void
tearDownAfterClassUsingPHPUnit()
Clear PHPUnit caches after class teardown.