mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-30 12:43:57 -06:00
21 lines
312 B
PHP
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);
|
|
|
|
}
|
|
}
|