assertContainsOnlyInstancesOf()
1 | assertContainsOnlyInstancesOf(string $classname , Traversable| array $haystack [, string $message = '' ]) |
Reports an error identified by $message
if $haystack
does not contain only instances of class $classname
.
Example A.9: Usage of assertContainsOnlyInstancesOf()
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | <?php use PHPUnit\Framework\TestCase; class ContainsOnlyInstancesOfTest extends TestCase { public function testFailure() { $this ->assertContainsOnlyInstancesOf( Foo:: class , [ new Foo, new Bar, new Foo] ); } } ?> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | phpunit ContainsOnlyInstancesOfTest PHPUnit 5.6.0 by Sebastian Bergmann and contributors. F Time: 0 seconds, Memory: 5.00Mb There was 1 failure: 1) ContainsOnlyInstancesOfTest::testFailure Failed asserting that Array ([0]=> Bar Object(...)) is an instance of class "Foo". /home/sb/ContainsOnlyInstancesOfTest.php:6 FAILURES! Tests: 1, Assertions: 1, Failures: 1. |
Please login to continue.