1 | <?php |
||
14 | class TopEditsControllerTest extends WebTestCase |
||
15 | { |
||
16 | |||
17 | /** |
||
18 | * Test that the form can be retrieved. |
||
19 | */ |
||
20 | public function testIndex() |
||
21 | { |
||
22 | $client = static::createClient(); |
||
23 | |||
24 | // Check basics. |
||
25 | $crawler = $client->request('GET', '/topedits'); |
||
26 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); |
||
27 | } |
||
28 | } |
||
29 |