TestCase
class TestCase extends TestCase
| internal |
Traits
Provides assertion helpers for test cases.
Methods
void
markTestSkippedUnless(bool|Closure|null $condition, string $message)
Mark the test as skipped when condition is not equivalent to true.
from
HandlesAssertions
void
markTestSkippedWhen(bool|Closure|null $condition, string $message)
Mark the test as skipped when condition is equivalent to true.
from
HandlesAssertions
void
tearDownTheTestEnvironmentUsingMockery()
Tear down the testing environment using Mockery.
from
InteractsWithMockery
void
tearDown()
Tear down the testing environment.
Details
in
HandlesAssertions at line 19
protected void
markTestSkippedUnless(bool|Closure|null $condition, string $message)
Mark the test as skipped when condition is not equivalent to true.
in
HandlesAssertions at line 32
protected void
markTestSkippedWhen(bool|Closure|null $condition, string $message)
Mark the test as skipped when condition is equivalent to true.
in
InteractsWithMockery at line 15
protected void
tearDownTheTestEnvironmentUsingMockery()
Tear down the testing environment using Mockery.
at line 24
protected void
tearDown()
Tear down the testing environment.