La función assertIsWritable() es una función incorporada en PHPUnit y se usa para afirmar si la afirmación es escribible especificó que el nombre de archivo es escribible o no. Esta afirmación devolverá verdadero en el caso de que exista el nombre de archivo dado y se pueda escribir; 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:
assertIsWritable(string $filename[, string $message = ''])
Parámetros: Esta función acepta dos parámetros como se muestra en la sintaxis anterior. Los parámetros se describen a continuación:
- $filename: este parámetro es cualquier tipo de string que indica el nombre del archivo.
- $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 assertIsWritable() en PHPUnit:
Ejemplo 1:
PHP
<?php use PHPUnit\Framework\TestCase; class GeeksPhpunitTestCase extends TestCase { public function testNegativeTestcaseForassertIsWritable() { $filename = "/home/lovely/Documents/php/GeeksPhpunitTestCase"; // Assert function to test whether given // file name is writable or not $this->assertIsWritable( $filename, "filename is writable or Not" ); } } ?>
Producción:
PHPUnit 8.5.8 by Sebastian Bergmann and contributors. F 1 / 1 (100%) Time: 86 ms, Memory: 10.00 MB There was 1 failure: 1) GeeksPhpunitTestCase::testNegativeTestcaseForassertIsWritable filename is writable or Not Failed asserting that "/home/lovely/Documents/php/GeeksPhpunitTestCase" is writable. /home/lovely/Documents/php/test.php:16 FAILURES! Tests: 1, Assertions: 1, Failures: 1.
Ejemplo 2:
PHP
<?php use PHPUnit\Framework\TestCase; class GeeksPhpunitTestCase extends TestCase { public function testPositiveTestcaseForassertIsWritable() { $filename = "/home/lovely/Documents/php"; // Assert function to test whether given // file name is writable or not $this->assertIsWritable( $filename, "filename is writable 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, 1 assertion)
Referencia: https://phpunit.readthedocs.io/en/9.2/assertions.html#assertiswritable
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