Slide 108
Slide 108 text
public function testAbout()
{
$client = $this->createClient();
$client->request('GET', '/about');
$response = $client->getResponse();
$this->assertTrue($response->isOk());
$this->assertContains('trashbin',
$response->getContent());
$this->assertContains('github',
$response->getContent());
$this->assertContains('igorw',
$response->getContent());
}