La función assertGreaterThanOrEqual() es una función incorporada en PHPUnit y se usa para afirmar si el valor obtenido realmente es mayor o igual que el valor esperado o no. Esta afirmación devolverá verdadero en el caso de que el valor real sea mayor o igual que el valor esperado; 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:
assertGreaterThanOrEqual(mixed $expected, mixed $actual [, string $message = ''])
Parámetros: esta función acepta tres parámetros, como se mencionó anteriormente y se describe a continuación:
- $esperado: este parámetro es de cualquier tipo de valor numérico que representa los datos esperados.
- $actual: este parámetro es de cualquier tipo de valor numérico que representa los datos reales.
- $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.
Los siguientes ejemplos ilustran la función assertGreaterThanOrEqual() en PHPUnit:
Ejemplo 1:
PHP
<?php use PHPUnit\Framework\TestCase; class GeeksPhpunitTestCase extends TestCase { public function testNegativeForassertGreaterThanOrEqualWithEqualVal() { $expected = 22; $actual = 10; // Assert function to test whether actual // value is greater than or equal to expected or not $this->assertGreaterThanOrEqual( $expected, $actual, "actual value is greater than or equal to expected" ); } public function testNegativeForassertGreaterThanOrEqualWithGreaterVal() { $expected = 22; $actual = 10; // Assert function to test whether actual // value is greater than or equal to expected or not $this->assertGreaterThanOrEqual( $expected, $actual, "actual value is greater than or equal to expected" ); } } ?>
Producción:
PHPUnit 8.5.8 by Sebastian Bergmann and contributors. FF 2 / 2 (100%) Time: 86 ms, Memory: 10.00 MB There were 2 failures: 1) GeeksPhpunitTestCase::testNegativeForassertGreaterThanOrEqualWithEqualVal actual value is greater than or equal to expected Failed asserting that 10 is equal to 22 or is greater than 22. /home/lovely/Documents/php/test.php:15 2) GeeksPhpunitTestCase::testNegativeForassertGreaterThanOrEqualWithGreaterVal actual value is greater than or equal to expected Failed asserting that 11 is equal to 22 or is greater than 22. /home/lovely/Documents/php/test.php:32 FAILURES! Tests: 2, Assertions: 4, Failures: 2.
Ejemplo 2:
PHP
<?php use PHPUnit\Framework\TestCase; class GeeksPhpunitTestCase extends TestCase { public function testPositiveForassertGreaterThanOrEqualWithEqualVal() { $expected = 11; $actual = 11; // Assert function to test whether actual // value is greater than or equal to expected or not $this->assertGreaterThanOrEqual( $expected, $actual, "actual value is greater than or equal to expected" ); } public function testPositiveForassertGreaterThanOrEqualWithGreaterVal() { $expected = 11; $actual = 12; // Assert function to test whether actual // value is greater than or equal to expected or not $this->assertGreaterThanOrEqual( $expected, $actual, "actual value is greater than or equal to expected" ); } } ?>
Producción:
PHPUnit 8.5.8 by Sebastian Bergmann and contributors. .. 2 / 2 (100%) Time: 87 ms, Memory: 10.00 MB OK (2 tests, 4 assertions)
Referencia: https://phpunit.readthedocs.io/en/9.2/assertions.html#assertgreaterthanorequal
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