PHPUnit assertIsObject() Function Last Updated : 17 Aug, 2020 Summarize Comments Improve Suggest changes Share Like Article Like Report The assertIsObject() function is a builtin function in PHPUnit and is used to assert whether the actual given content is an object or not. This assertion will return true in the case if the actual given content is object else returns false. In case of true the asserted test case got passed, else test case got failed. Syntax: assertIsObject($actual[, $message = '']) Parameters: This function accepts two parameters as mentioned above described below: $actual: This parameter is of any type which represents the actual content.$message: This parameter takes a string value. When the test case got failed this string message got displayed as an error message. Below example illustrate the assertIsObject() function in PHPUnit: Example 1: PHP <?php use PHPUnit\Framework\TestCase; class GeeksPhpunitTestCase extends TestCase { public function testNegativeTestcaseForassertIsObject() { $actualcontent = ('lovely laptop'); // Assert function to test whether given // actual content is object or not $this->assertIsObject( $actualcontent, "actual content is object or not" ); } } ?> Output: PHPUnit 8.5.8 by Sebastian Bergmann and contributors. F 1 / 1 (100%) Time: 89 ms, Memory: 10.00 MB There was 1 failure: 1) GeeksPhpunitTestCase::testNegativeTestcaseForassertIsObject actual content is object or not Failed asserting that 'lovely laptop' is of type "object". /home/lovely/Documents/php/test.php:15 FAILURES! Tests: 1, Assertions: 1, Failures: 1. Example 2: PHP <?php use PHPUnit\Framework\TestCase; class GeeksPhpunitTestCase extends TestCase { public function testPositiveTestcaseForassertIsObject() { $actualcontent = (object) ('lovely laptop'); // Assert function to test whether given // actual content is object or not $this->assertIsObject( $actualcontent, "actual content is object or not" ); } } ?> Output: PHPUnit 8.5.8 by Sebastian Bergmann and contributors. . 1 / 1 (100%) Time: 108 ms, Memory: 10.00 MB OK (1 test, 1 assertion) Reference: https://phpunit.readthedocs.io/en/9.2/assertions.html#assertisobject Comment More infoAdvertise with us Next Article PHPUnit assertIsObject() Function S shubham_singh Follow Improve Article Tags : Web Technologies PHP PHP-PHPUnit Similar Reads PHPUnit assertIsNotObject() Function The assertIsNotObject() function is a builtin function in PHPUnit and is used to assert whether the actual given content does not object. This assertion will return true in the case if the actual given content is not object else returns false. In case of true the asserted test case got passed else t 2 min read PHPUnit assertIsFloat() Function The assertIsFloat() function is a builtin function in PHPUnit and is used to assert whether the actually obtained value is float or not. This assertion will return true in the case if the actual value is Float else returns false. In case of true the asserted test case got passed else test case got f 2 min read PHPUnit assertIsInt() Function The assertIsInt() function is a builtin function in PHPUnit and is used to assert whether the given actual variable is an integer or not. This assertion will return true in the case if the actual variable is an integer else returns false. In case of true the asserted test case got passed else test c 2 min read PHPUnit assertIsBool() Function The assertIsBool() function is a builtin function in PHPUnit and is used to assert whether the actually obtained value is Bool or not. This assertion will return true in the case if the actual value is the Bool else returns false. In case of true the asserted test case got passed else test case got 2 min read PHPUnit assertIsNotInt() Function The assertIsNotInt() function is a builtin function in PHPUnit and is used to assert whether the given actual variable is not an integer. This assertion will return true in the case if the actual variable is doesn't integer else returns false. In case of true the asserted test case got passed else t 2 min read Like