La función assertIsObject() es una función incorporada en PHPUnit y se usa para afirmar si el contenido real dado es un objeto o no. Esta afirmación devolverá verdadero en el caso de que el contenido real dado sea un objeto; de lo contrario, devolverá falso. En caso de que sea cierto, se aprobó el caso de prueba afirmado; de lo contrario, el caso de prueba falló.
Sintaxis:
assertIsObject($actual[, $message = ''])
Parámetros: Esta función acepta dos parámetros como se menciona anteriormente y se describen a continuación:
- $actual: este parámetro es de cualquier tipo que representa el contenido real.
- $mensaje: este parámetro toma un valor de string. Cuando el caso de prueba falló, este mensaje de string se mostró como un mensaje de error.
El siguiente ejemplo ilustra la función assertIsObject() en PHPUnit:
Ejemplo 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" ); } } ?>
Producción:
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.
Ejemplo 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" ); } } ?>
Producción:
PHPUnit 8.5.8 by Sebastian Bergmann and contributors. . 1 / 1 (100%) Time: 108 ms, Memory: 10.00 MB OK (1 test, 1 assertion)
Referencia: https://phpunit.readthedocs.io/en/9.2/assertions.html#assertisobject
Publicación traducida automáticamente
Artículo escrito por shubham_singh y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA