没有virtualhost的Symfony 2 Controller Test

时间:2012-07-25 02:33:31

标签: symfony

如何在symfony 2上运行没有虚拟主机的控制器测试?我的项目在web根目录“http:// localhost / Symfony / web /”

public function testIndex() {
    $client = static::createClient();
    $crawler = $client->request('GET', '/home');
    $this->assertTrue($client->getResponse()->getStatusCode() == '200');
    $this->assertTrue($crawler->filter('title:contains("MyTitle")')->count() > 0);
}

上面的测试试图请求“http:// localhost / home”,我尝试将请求更改为完整的URL但它还没有工作

有谁知道我该怎么办呢?

0 个答案:

没有答案