1: <?php
2:
3: class ExampleTest extends TestCase {
4:
5: /**
6: * A basic functional test example.
7: *
8: * @return void
9: */
10: public function testBasicExample()
11: {
12: $crawler = $this->client->request('GET', '/');
13:
14: $this->assertTrue($this->client->getResponse()->isOk());
15: }
16:
17: }
18: