mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-05 21:53:08 -06:00
22 lines
319 B
PHP
22 lines
319 B
PHP
<?php
|
|
|
|
/**
|
|
* Class ExampleTest
|
|
*/
|
|
class ExampleTest extends TestCase
|
|
{
|
|
|
|
/**
|
|
* A basic functional test example.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testBasicExample()
|
|
{
|
|
$response = $this->call('GET', '/');
|
|
|
|
$this->assertEquals(200, $response->getStatusCode());
|
|
}
|
|
|
|
}
|