Skip to content

Commit

Permalink
Update DefaultControllerTest.php
Browse files Browse the repository at this point in the history
  • Loading branch information
Nardberjean committed Dec 3, 2017
1 parent 1336eea commit c03eef0
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions tests/FrameworkTwig/DefaultControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,10 @@

class DefaultControllerTest extends WebTestCase
{
public function _s34_testIndex()
public function testIndex()
{
$this->markTestIncomplete(); // Test does not work any more with Symfony 3.4

$client = static::createClient();

$crawler = $client->request('GET', '/');
Expand All @@ -27,8 +29,10 @@ public function _s34_testIndex()
$this->assertContains('Hello World!', $client->getResponse()->getContent());
}

public function _s34_testArgument()
public function testArgument()
{
$this->markTestIncomplete(); // Test does not work any more with Symfony 3.4

$client = static::createClient();

$crawler = $client->request('GET', '/argument');
Expand All @@ -41,8 +45,10 @@ public function _s34_testArgument()
$this->assertContains('Hello World!', $client->getResponse()->getContent());
}

public function _s34_testConstructor()
public function testConstructor()
{
$this->markTestIncomplete(); // Test does not work any more with Symfony 3.4

$client = static::createClient();

$crawler = $client->request('GET', '/constructor');
Expand All @@ -55,8 +61,10 @@ public function _s34_testConstructor()
$this->assertContains('Hello World!', $client->getResponse()->getContent());
}

public function _s34_testVariadic()
public function testVariadic()
{
$this->markTestIncomplete(); // Test does not work any more with Symfony 3.4

$client = static::createClient();

$crawler = $client->request('GET', '/variadic/request');
Expand Down

0 comments on commit c03eef0

Please sign in to comment.