firefly-iii/tests/BasicTest.php

19 lines
223 B
PHP
Raw Normal View History

2016-01-09 02:56:41 -06:00
<?php
2016-01-16 00:14:36 -06:00
/**
* Class BasicTest
*/
2016-01-09 02:56:41 -06:00
class BasicTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function testExample()
{
$this->assertTrue(true);
2016-01-17 00:18:35 -06:00
2016-01-09 02:56:41 -06:00
}
}