如何在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但它还没有工作
有谁知道我该怎么办呢?