aboutsummaryrefslogtreecommitdiff
path: root/backyard/php-api/trunk/tests/ExampleTest.php
blob: 1ea4acd2606e507c8c982bbf6c14771890a3a0dc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

class ExampleTest extends TestCase {

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

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

}