IntegrationTestCaseTest.php 520 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. namespace Tools\Test\TestCase\TestSuite;
  3. use Tools\TestSuite\IntegrationTestCase;
  4. class IntegrationTestCaseTest extends IntegrationTestCase {
  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 testFoo() {
  21. $this->debug('Foo');
  22. $x = $this->osFix("\r\n");
  23. $this->assertSame("\n", $x);
  24. $result = $this->isDebug();
  25. $this->assertFalse($result);
  26. }
  27. }