From 6f9015ac088208ad8a34fd6fb2a764ba969ba965 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Sun, 5 Jul 2015 11:19:46 +0200 Subject: [PATCH] mark test as skipped for now --- Tests/Controller/ActivityControllerTest.php | 5 +++++ .../ActivityReasonCategoryControllerTest.php | 4 ++++ .../Controller/ActivityReasonControllerTest.php | 4 ++++ Tests/Controller/ActivityTypeControllerTest.php | 4 ++++ Tests/Controller/DefaultControllerTest.php | 17 ----------------- 5 files changed, 17 insertions(+), 17 deletions(-) delete mode 100644 Tests/Controller/DefaultControllerTest.php 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); - } -}