瀏覽代碼

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());
-    }
-}