mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-29 02:11:12 -06:00
21 lines
273 B
PHP
21 lines
273 B
PHP
<?php
|
|
|
|
/**
|
|
* Class BasicTest
|
|
*/
|
|
|
|
/** @noinspection PhpUndefinedClassInspection */
|
|
class BasicTest extends TestCase
|
|
{
|
|
/**
|
|
* A basic test example.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testExample()
|
|
{
|
|
$this->assertTrue(true);
|
|
|
|
}
|
|
}
|