| 1234567891011121314151617181920212223242526 |
- <?php
- namespace Tools\Test\TestCase\TestSuite;
- use Tools\TestSuite\TestCase;
- class TestCaseTest extends TestCase {
- public function setUp() {
- parent::setUp();
- }
- public function tearDown() {
- parent::tearDown();
- }
- /**
- * @return void
- */
- public function testAssertNotWithinRange() {
- $this->assertWithinRange(22, 23, 1);
- $this->assertNotWithinRange(22, 23, 0.9);
- }
- }
|