ApplicationTest.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. /**
  3. * Generated by PHPUnit_SkeletonGenerator on 2014-12-04 at 12:32:37.
  4. */
  5. class ApplicationTest extends PHPUnit_Framework_TestCase {
  6. /**
  7. * @var Application
  8. */
  9. protected $object;
  10. /**
  11. * Sets up the fixture, for example, opens a network connection.
  12. * This method is called before a test is executed.
  13. */
  14. protected function setUp() {
  15. $this->object=new Application("");
  16. }
  17. /**
  18. * Tears down the fixture, for example, closes a network connection.
  19. * This method is called after a test is executed.
  20. */
  21. protected function tearDown() {
  22. }
  23. /**
  24. * @covers Application::GetOutput
  25. * @todo Implement testGetOutput().
  26. */
  27. public function testGetOutput() {
  28. // Remove the following lines when you implement this test.
  29. $this->markTestIncomplete(
  30. 'This test has not been implemented yet.'
  31. );
  32. }
  33. /**
  34. * @covers Application::FindControllerPath
  35. * @todo Implement testFindControllerPath().
  36. */
  37. public function testFindControllerPath() {
  38. // Remove the following lines when you implement this test.
  39. $this->markTestIncomplete(
  40. 'This test has not been implemented yet.'
  41. );
  42. }
  43. }