123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- /**
- * Generated by PHPUnit_SkeletonGenerator on 2014-12-04 at 12:32:37.
- */
- class ApplicationTest extends PHPUnit_Framework_TestCase {
- /**
- * @var Application
- */
- protected $object;
- /**
- * Sets up the fixture, for example, opens a network connection.
- * This method is called before a test is executed.
- */
- protected function setUp() {
- $this->object=new Application("");
- }
- /**
- * Tears down the fixture, for example, closes a network connection.
- * This method is called after a test is executed.
- */
- protected function tearDown() {
-
- }
- /**
- * @covers Application::GetOutput
- * @todo Implement testGetOutput().
- */
- public function testGetOutput() {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers Application::FindControllerPath
- * @todo Implement testFindControllerPath().
- */
- public function testFindControllerPath() {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- }
|