assertNan()
1 | assertNan(mixed $variable [, string $message = '' ]) |
Reports an error identified by $message
if $variable
is not NAN
.
Example A.38: Usage of assertNan()
1 2 3 4 5 6 7 8 9 10 11 | <?php use PHPUnit\Framework\TestCase; class NanTest extends TestCase { public function testFailure() { $this ->assertNan(1); } } ?> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | phpunit NanTest PHPUnit 5.6.0 by Sebastian Bergmann and contributors. F Time: 0 seconds, Memory: 5.00Mb There was 1 failure: 1) NanTest::testFailure Failed asserting that 1 is nan. /home/sb/NanTest.php:6 FAILURES! Tests: 1, Assertions: 1, Failures: 1. |
Please login to continue.