IntegrationTestCaseTest.php 461 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. namespace Tools\TestCase\TestSuite;
  3. use Tools\TestSuite\IntegrationTestCase;
  4. class IntegrationTestCaseTest extends IntegrationTestCase {
  5. public function setUp() {
  6. parent::setUp();
  7. }
  8. public function tearDown() {
  9. parent::tearDown();
  10. }
  11. /**
  12. * @return void
  13. */
  14. public function testFoo() {
  15. $this->debug('Foo');
  16. $x = $this->osFix("\r\n");
  17. $this->assertSame("\n", $x);
  18. $result = $this->isDebug();
  19. $this->assertFalse($result);
  20. }
  21. }