1 <?php
2
3 class DocumentRepositoryTest extends TestCase {
4
5 public function testBasicExample()
6 {
7 $response = $this->call('GET', '/');
8
9 $this->assertEquals(200, $response->getStatusCode());
10 }
11
12 }