mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
18 lines
254 B
PHP
18 lines
254 B
PHP
<?php
|
|
|
|
class ExampleTest extends TestCase {
|
|
|
|
/**
|
|
* A basic functional test example.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testBasicExample()
|
|
{
|
|
$response = $this->call('GET', '/');
|
|
|
|
$this->assertEquals(200, $response->getStatusCode());
|
|
}
|
|
|
|
}
|