TestCaseTest.php 403 B

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