2013-01-11 15:14:07 -06:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
class ExampleTest extends TestCase {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* A basic functional test example.
|
|
|
|
|
*
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
|
|
|
|
public function testBasicExample()
|
|
|
|
|
{
|
|
|
|
|
$crawler = $this->client->request('GET', '/');
|
|
|
|
|
|
|
|
|
|
$this->assertTrue($this->client->getResponse()->isOk());
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-15 10:14:55 +00:00
|
|
|
}
|