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