firefly-iii/tests/BasicTest.php

22 lines
339 B
PHP
Raw Normal View History

2016-01-09 02:56:41 -06:00
<?php
2016-05-20 01:57:45 -05:00
declare(strict_types = 1);
2016-01-09 02:56:41 -06:00
2016-01-16 00:14:36 -06:00
/**
* Class BasicTest
*/
2016-02-07 00:56:58 -06:00
2016-01-09 02:56:41 -06:00
class BasicTest extends TestCase
{
/**
2016-02-10 08:04:18 -06:00
* A basic test example. May take a minute because the test data is being generated.
2016-01-09 02:56:41 -06:00
*
2016-02-10 08:04:18 -06:00
* @slowThreshold 60000
2016-01-09 02:56:41 -06:00
* @return void
*/
public function testExample()
{
$this->assertTrue(true);
2016-01-17 00:18:35 -06:00
2016-01-09 02:56:41 -06:00
}
}