@PHPUnit30Migration-risky.test-out.php 279 B

12345678910
  1. <?php
  2. class FooTest extends \PHPUnit_Framework_TestCase {
  3. public function test_dedicate_assert($foo) {
  4. $this->assertNull($foo);
  5. $this->assertTrue(is_array($foo));
  6. $this->assertTrue(is_nan($foo));
  7. $this->assertTrue(is_readable($foo));
  8. }
  9. }