Files
firefly-iii/tests/BasicTest.php

22 lines
339 B
PHP
Raw Normal View History

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