PHPUnit afirmarIsNotScalar() Función

La función assertIsNotScalar() es una función incorporada en PHPUnit y se usa para afirmar que las variables escalares son aquellas que contienen un número entero, flotante, string o booleano. Esta función no considera que nulo sea escalar. Esta afirmación devolverá verdadero en el caso de que el valor real sea escalar; 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:

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

Parámetros: esta función acepta dos parámetros, como se mencionó anteriormente y se describe a continuación:

  • $actual: este parámetro es de cualquier tipo de string o 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 assertIsNotScalar() en PHPUnit:

Ejemplo 1:

PHP

<?php 
use PHPUnit\Framework\TestCase; 
    
class GeeksPhpunitTestCase extends TestCase 
{ 
    public function testPositiveForassertIsNotScalar()
    {   
     $actualvalue = "Null";
        // Assert function to test whether actual 
        // value is a any type of string or not
        $this->assertIsNotScalar(
          
            $actualvalue, 
            "actual value is a scalar or not"
        );
          
    }
  
  
     public function testNegativeForassertIsNotScalar()
    {   
     $actualvalue = 420;
            // Assert function to test whether actual 
        // value is a integer or not
        $this->assertIsNotScalar(
          
            $actualvalue, 
            "actual value is a scalar or not"
        );
          
    }
   
 } 
?> 

Producción:

PHPUnit 8.5.8 by Sebastian Bergmann and contributors.

FF                                                 2 / 2 (100%)

Time: 90 ms, Memory: 10.00 MB

There were 2 failures:

1) GeeksPhpunitTestCase::testPositiveForassertIsNotScalar
actual value is a scalar or not
Failed asserting that 'Null' is not of type "scalar".

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

2) GeeksPhpunitTestCase::testNegativeForassertIsNotScalar
actual value is a scalar or not
Failed asserting that 420 is not of type "scalar".

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

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

Programa 2:

PHP

<?php 
use PHPUnit\Framework\TestCase; 
    
class GeeksPhpunitTestCase extends TestCase 
{ 
    public function testPositiveForassertIsNotScalar()
    {   
     $actualvalue = Null;
        // Assert function to test whether actual 
        // value is a any type of string or not
        $this->assertIsNotScalar(
          
            $actualvalue, 
            "actual value is a scalar or not"
        );
  
    }
      
}
  
?>

Producción:

PHPUnit 8.5.8 by Sebastian Bergmann and contributors.

.                                                1 / 1 (100%)

Time: 90 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 *