ソースを参照

Test eliminado

Guillermo Espinoza 7 年 前
コミット
4fe74fbb03
1 ファイル変更0 行追加18 行削除
  1. 0 18
      tests/AppBundle/Controller/DefaultControllerTest.php

+ 0 - 18
tests/AppBundle/Controller/DefaultControllerTest.php

@@ -1,18 +0,0 @@
-<?php
-
-namespace Tests\AppBundle\Controller;
-
-use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
-
-class DefaultControllerTest extends WebTestCase
-{
-    public function testIndex()
-    {
-        $client = static::createClient();
-
-        $crawler = $client->request('GET', '/');
-
-        $this->assertEquals(200, $client->getResponse()->getStatusCode());
-        $this->assertContains('Welcome to Symfony', $crawler->filter('#container h1')->text());
-    }
-}