firefly-iii/tests/BasicTest.php
2016-02-10 15:04:18 +01:00

21 lines
312 B
PHP

<?php
/**
* 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);
}
}