TestCaseTest.php 442 B

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