ExampleTest.php 254 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
<?php

class ExampleTest extends TestCase {

	/**
	 * A basic functional test example.
	 *
	 * @return void
	 */
	public function testBasicExample()
	{
12
		$response = $this->call('GET', '/');
13

14
		$this->assertEquals(200, $response->getStatusCode());
15 16
	}

Graham Campbell committed
17
}