diff --git a/Tests/Controller/ActivityControllerTest.php b/Tests/Controller/ActivityControllerTest.php index 2a0cb3c21..6fd1dd06e 100644 --- a/Tests/Controller/ActivityControllerTest.php +++ b/Tests/Controller/ActivityControllerTest.php @@ -6,6 +6,11 @@ use Symfony\Bundle\FrameworkBundle\Test\WebTestCase; class ActivityControllerTest extends WebTestCase { + public function testToWrite() + { + $this->markTestSkipped(); + } + /* public function testCompleteScenario() { diff --git a/Tests/Controller/ActivityReasonCategoryControllerTest.php b/Tests/Controller/ActivityReasonCategoryControllerTest.php index 09dbbfb86..9222d4b39 100644 --- a/Tests/Controller/ActivityReasonCategoryControllerTest.php +++ b/Tests/Controller/ActivityReasonCategoryControllerTest.php @@ -6,6 +6,10 @@ use Symfony\Bundle\FrameworkBundle\Test\WebTestCase; class ActivityReasonCategoryControllerTest extends WebTestCase { + public function testToWrite() + { + $this->markTestSkipped(); + } /* public function testCompleteScenario() { diff --git a/Tests/Controller/ActivityReasonControllerTest.php b/Tests/Controller/ActivityReasonControllerTest.php index d1adc9ca4..5ee8cf977 100644 --- a/Tests/Controller/ActivityReasonControllerTest.php +++ b/Tests/Controller/ActivityReasonControllerTest.php @@ -6,6 +6,10 @@ use Symfony\Bundle\FrameworkBundle\Test\WebTestCase; class ActivityReasonControllerTest extends WebTestCase { + public function testToWrite() + { + $this->markTestSkipped(); + } /* public function testCompleteScenario() { diff --git a/Tests/Controller/ActivityTypeControllerTest.php b/Tests/Controller/ActivityTypeControllerTest.php index 07c72c3dd..9249f14ae 100644 --- a/Tests/Controller/ActivityTypeControllerTest.php +++ b/Tests/Controller/ActivityTypeControllerTest.php @@ -6,6 +6,10 @@ use Symfony\Bundle\FrameworkBundle\Test\WebTestCase; class ActivityTypeControllerTest extends WebTestCase { + public function testToWrite() + { + $this->markTestSkipped(); + } /* public function testCompleteScenario() { diff --git a/Tests/Controller/DefaultControllerTest.php b/Tests/Controller/DefaultControllerTest.php deleted file mode 100644 index c653df136..000000000 --- a/Tests/Controller/DefaultControllerTest.php +++ /dev/null @@ -1,17 +0,0 @@ -request('GET', '/hello/Fabien'); - - $this->assertTrue($crawler->filter('html:contains("Hello Fabien")')->count() > 0); - } -}