public function dashboard()
{
return $this->render('dashboard.html.twig');
}
我想知道如何正确编写此方法的单元测试。我使用PHPUnit编写单元测试。
答案 0 :(得分:0)
我同意@Matteo,在这种情况下你应该看看'功能'测试。 @dragoste指出,您没有提供足够的信息来帮助您。
看看我写的关于使用Mink for Functional测试的博客文章: https://alvinbunk.wordpress.com/2016/08/03/using-mink-to-perform-functional-tests-in-symfony3-framework/
您的功能测试可以简单:
$this->visit('/somePage');
$page = $this->getCurrentPage();
$this->assertContains('<p>some text</p>');
你明白了。