firefly-iii/tests/BasicTest.php
2016-05-20 08:57:45 +02:00

22 lines
339 B
PHP

<?php
declare(strict_types = 1);
/**
* Class BasicTest
*/
class BasicTest extends TestCase
{
/**
* A basic test example. May take a minute because the test data is being generated.
*
* @slowThreshold 60000
* @return void
*/
public function testExample()
{
$this->assertTrue(true);
}
}