PHPUnit afirmar NotIsWritable() Función

La función assertNotIsWritable() es una función integrada en PHPUnit y se utiliza para afirmar si la afirmaciónNoIswritable especificó que el nombre de archivo no se puede escribir. Esta afirmación devolverá verdadero en el caso de que el nombre de archivo dado no exista y no 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:

assertNotIsWritable(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 assertNotIsWritable() en PHPUnit:

Ejemplos 1:

PHP

<?php 
use PHPUnit\Framework\TestCase; 
    
class GeeksPhpunitTestCase extends TestCase 
{ 
    public function testNegativeTestcaseForassertNotIsWritable()
    { 
        $filename = "/home/lovely/Documents/php/phpunit"; 
    
        // Assert function to test whether given 
        // file name is not writable 
        $this->assertNotIsWritable(
            $filename, 
            "filename is not writable"
        ); 
    } 
} 
    
?>

Producción:

PHPUnit 8.5.8 by Sebastian Bergmann and contributors.

F                                                             1 / 1 (100%)

Time: 85 ms, Memory: 10.00 MB

There was 1 failure:

1) GeeksPhpunitTestCase::testNegativeTestcaseForassertNotIsWritable
filename is writable or Not
Failed asserting that "/home/lovely/Documents/php/phpunit" is not 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 testPositiveTestcaseForassertNotIsWritable()
    { 
        $filename = "/home/lovely/Documents/php/phpunit/geeksforgeeks"; 
    
        // Assert function to test whether given 
        // file name is not writable 
        $this->assertNotIsWritable(
            $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)

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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *