The assertInstanceOf() is a built in PHP function to test your php based features before deploying the application on your live application.assertNotInstanceOf()
function is the inverse of this assertion and takes the same arguments.
Syntax:
assertInstanceOf($expected, $actual[, $message = ''])
Reports an error identified by $message
if $actual
is not an instance of $expected
.
1 2 3 4 5 6 7 8 9 10 11 | <?php use PHPUnit\Framework\TestCase; class InstanceOfTest extends TestCase { public function testFailure() { $this->assertInstanceOf(RuntimeException::class, new Exception); } } ?> |
Reference: https://phpunit.readthedocs.io/en/8.4/assertions.html#assertinstanceof
If you like FreeWebMentor and you would like to contribute, you can write an article and mail your article to [email protected] Your article will appear on the FreeWebMentor main page and help other developers.