La función assertStringEndsWith() es una función incorporada en PHPUnit y se usa para afirmar si la string real termina con la string de sufijo esperada o no. Esta afirmación devolverá verdadero en el caso de que la string de sufijo esperada termine con la string real; de lo contrario, devuelve falso. En caso de que sea cierto, el caso de prueba afirmado se aprobó; de lo contrario, el caso de prueba falló.
Sintaxis:
assertStringEndsWith(string $suffix, string $string [, string $message = ''])
Parámetros: Esta función acepta tres parámetros como se muestra en la sintaxis anterior. Los parámetros se describen a continuación:
- $expectedsuffix: este parámetro es de cualquier tipo que representa la string de sufijo esperada.
- $actualstring: este parámetro es de cualquier tipo que represente la string 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.
Los siguientes ejemplos ilustran la función assertStringEndsWith() en PHPUnit:
Ejemplo 1:
PHP
<?php use PHPUnit\Framework\TestCase; class GeeksPhpunitTestCase extends TestCase { public function testNegativeTestcaseForassertStringEndsWith() { $expectedsuffix = ('thh'); $actualstring = ('4th'); // Assert function to test whether // expected suffix string ends with // actual string content $this->assertStringEndsWith( $expectedsuffix, $actualstring, "actual string content ends with expected suffix content" ); } } ?>
Producción:
PHPUnit 8.5.8 by Sebastian Bergmann and contributors. F 1 / 1 (100%) Time: 90 ms, Memory: 10.00 MB There was 1 failure: 1) GeeksPhpunitTestCase::testPositiveTestcaseForassertStringNotEqualsFile actual string content ends with expected suffix content Failed asserting that '4th' ends with "thh". /home/lovely/Documents/php/test.php:17 FAILURES! Tests: 1, Assertions: 1, Failures: 1.
Ejemplo 2:
PHP
<?php use PHPUnit\Framework\TestCase; class GeeksPhpunitTestCase extends TestCase { public function testPositiveTestcaseForassertStringEndsWith() { $expectedsuffix = ('th'); $actualstring = ('4th'); // Assert function to test whether // expected suffix // string ends with actual string content $this->assertStringEndsWith( $expectedsuffix, $actualstring, "actual string content ends with expected suffix content" ); } } ?>
Producción:
PHPUnit 8.5.8 by Sebastian Bergmann and contributors. . 1 / 1 (100%) Time: 88 ms, Memory: 10.00 MB OK (1 test, 1 assertion)
Referencia: https://phpunit.readthedocs.io/en/9.2/assertions.html#assertstringendswith
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