1つのコントローラメソッドに対して簡単なユニットテストをセットアップしようとしています。Laravel 5.5ユニットテストコントローラメソッド
目的は、ビューに期待値があるかどうかをテストすることです。私conosleで
/**
* Does the homepage receive all companies when there is no licensekey provided.
*
* @return void
*/
public function testAllCompaniesOnHomepageWithoutLicensekey()
{
$this->call('GET', '/');
$allCompanies = Company::all();
$this->assertViewHas('allCompanies', $allCompanies);
}
私は次のエラーを取得する:
Error: Call to undefined method Tests\Unit\ExampleTest::assertViewHas()
は、私は、これはLaravel 5.5でなくなっavailbaleであるかどうかわからないのですか?
私の目標をどのようにテストできますか?
@Troyerが、私は表示されません。私はブラウザーテストをしようとしていない。 – Chris