TestCaseTest.php 388 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace Tools\Test\TestCase\TestSuite;
  3. use Tools\TestSuite\TestCase;
  4. class TestCaseTest extends TestCase {
  5. public function setUp() {
  6. parent::setUp();
  7. }
  8. public function tearDown() {
  9. parent::tearDown();
  10. }
  11. /**
  12. * @return void
  13. */
  14. public function testAssertNotWithinRange() {
  15. $this->assertWithinRange(22, 23, 1);
  16. $this->assertNotWithinRange(22, 23, 0.9);
  17. }
  18. }