IntegrationTestCaseTest.php 481 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace Tools\TestCase\TestSuite;
  3. use Tools\TestSuite\IntegrationTestCase;
  4. class IntegrationTestCaseTest extends IntegrationTestCase {
  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 testFoo() {
  16. $this->debug('Foo');
  17. $x = $this->osFix("\r\n");
  18. $this->assertSame("\n", $x);
  19. $result = $this->isDebug();
  20. $this->assertFalse($result);
  21. }
  22. }