PHPUnit aserciónIsResource() Función

La función assertIsResource() es una función integrada en PHPUnit y se usa para afirmar si la variable dada es un recurso o no. Esta afirmación devolverá verdadero en el caso de que la variable dada sea Recurso; 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:

assertIsResource($actual[, $message = ''])

Parámetros: esta función acepta dos parámetros como los anteriores y los descritos a continuación:

  • $variable: este parámetro es de cualquier tipo de variable 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 assertIsResource() en PHPUnit:

Ejemplo 1: 

PHP

<?php 
use PHPUnit\Framework\TestCase; 
    
class GeeksPhpunitTestCase extends TestCase 
{ 
    public function testNegativeTestcaseForassertIsResource()
    { 
       $variable =  555;
        // Assert function to test whether assert
        //  variable is resource or not
        $this->assertIsResource(
            $variable,
            "assert variable is resource 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::testNegativeTestcaseForassertIsResource
assert variable is resource or not
Failed asserting that 555 is of type "resource".

/home/lovely/Documents/php/test.php:14

FAILURES!
Tests: 1, Assertions: 1, Failures: 1.

Ejemplo 2:

PHP

<?php 
use PHPUnit\Framework\TestCase; 
    
class GeeksPhpunitTestCase extends TestCase 
{ 
    public function testPositiveTestcaseForassertIsResource()
    { 
       $variable =  fopen('http://www.google.com','r');
        // Assert function to test whether assert
        //  variable is Iterable
        $this->assertIsResource(
            $variable,
            "assert variable is Iterable or not"
        );
       fclose($variable);
  
    }
   
 } 
?> 

Producción:

PHPUnit 8.5.8 by Sebastian Bergmann and contributors.

.                                                 1 / 1 (100%)

Time: 613 ms, Memory: 10.00 MB

OK (1 test, 1 assertion)

Referencia: https://phpunit.readthedocs.io/en/9.2/assertions.html#assertisresource

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 *