La función assertStringEqualsFile() es una función integrada en PHPUnit y se usa para afirmar si el contenido de la string real obtenido es igual al archivo esperado o no. Esta afirmación devolverá verdadero en el caso de que el contenido del archivo esperado sea el mismo que el contenido real de la string; 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:
assertStringEqualsFile(string $expectedFile, string $actualString[, string $message = ''])
Parámetros: esta función acepta tres parámetros, como se mencionó anteriormente y se describe a continuación:
- $expectedfile: este parámetro es de cualquier tipo que representa el archivo esperado.
- $actualstring: este parámetro es de cualquier tipo que represente el contenido real de la string.
- $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 assertStringEqualsFile() en PHPUnit:
Ejemplo 1:
PHP
<?php use PHPUnit\Framework\TestCase; class GeeksPhpunitTestCase extends TestCase { public function testNegativeTestcaseForassertStringEqualsFile() { $expectedfile = "/home/lovely/Documents/php/abc"; $actualstring = "File has geeksforgeeks"; // Assert function to test whether // expected file content is equal to // actual string content or not $this->assertStringEqualsFile( $expectedfile, $actualstring, "actual string content is equals to expected file content 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::testNegativeTestcaseForassertStringEqualsFile actual string content is not equals to expected file content Failed asserting that two strings are equal. --- Expected +++ Actual @@ @@ -'File has not geeksforgeeks' +'File has geeksforgeeks' /home/lovely/Documents/php/test.php:17 FAILURES! Tests: 1, Assertions: 2, Failures: 1.
Ejemplo 2:
PHP
<?php use PHPUnit\Framework\TestCase; class GeeksPhpunitTestCase extends TestCase { public function testPositiveTestcaseForassertStringEqualsFile() { $expectedfile = "/home/lovely/Documents/php/abc"; $actualstring = "File has geeksforgeeks"; // Assert function to test whether // expected file content is equal // to actual string content or not $this->assertStringEqualsFile( $expectedfile, $actualstring, "actual string content is equals to expected file content or not" ); } } ?>
Producción:
PHPUnit 8.5.8 by Sebastian Bergmann and contributors. . 1 / 1 (100%) Time: 87 ms, Memory: 10.00 MB OK (1 test, 2 assertions)
Referencia: https://phpunit.readthedocs.io/en/9.2/assertions.html#assertstringequalsfile
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