La función assertIsScalar() es una función incorporada en PHPUnit y se usa para afirmar que las variables escalares son aquellas que contienen un número entero, flotante, string o booleano. Esta función no considera que nulo sea escalar. Esta afirmación devolverá verdadero en el caso de que el valor real sea escalar; de lo contrario, devolverá falso. En caso de que sea cierto, el caso de prueba afirmado se aprobó; de lo contrario, el caso de prueba falló.
Sintaxis:
assertIsScalar($actual[, $message = ''])
Parámetros: Esta función acepta dos parámetros como se menciona y describe a continuación:
- $actual: este parámetro es de cualquier tipo de string o variable que representa los datos reales.
- $mensaje: este parámetro toma valor de string. Cuando el caso de prueba falló, este mensaje de string se mostró como un mensaje de error.
Los siguientes ejemplos ilustran la función assertIsScalar() en PHPUnit:
Ejemplos 1:
PHP
<?php use PHPUnit\Framework\TestCase; class GeeksPhpunitTestCase extends TestCase { public function testNegativeForassertIsScalar() { $actualvalue = Null; // Assert function to test whether actual // value is a scalar or not $this->assertIsScalar( $actualvalue, "actual value is a scalar or not" ); } } ?>
Producción:
PHPUnit 8.5.8 by Sebastian Bergmann and contributors. F 1 / 1 (100%) Time: 88 ms, Memory: 10.00 MB There was 1 failure: 1) GeeksPhpunitTestCase::testNegativeForassertIsScalar actual value is a scalar or not Failed asserting that null is of type "scalar". /home/lovely/Documents/php/test.php:14 FAILURES! Tests: 1, Assertions: 1, Failures: 1.
Ejemplos 2:
PHP
<?php use PHPUnit\Framework\TestCase; class GeeksPhpunitTestCase extends TestCase { public function testPositiveForassertIsScalar() { $actualvalue = "Null"; // Assert function to test whether actual // value is a any type of string or not $this->assertIsScalar( $actualvalue, "actual value is a scalar or not" ); } public function testNegativeForassertIsScalar() { $actualvalue = 420; // Assert function to test whether actual // value is a integer or not $this->assertIsScalar( $actualvalue, "actual value is a scalar or not" ); } } ?>
Producción:
PHPUnit 8.5.8 by Sebastian Bergmann and contributors. .. 2 / 2 (100%) Time: 90 ms, Memory: 10.00 MB OK (2 tests, 2 assertions)
Referencia: https://phpunit.readthedocs.io/en/9.2/assertions.html#assertisscalar
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