mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-09 07:33:06 -06:00
21 lines
239 B
PHP
21 lines
239 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Class ExampleTest
|
||
|
*/
|
||
|
class ExampleTest extends \PHPUnit_Framework_TestCase
|
||
|
{
|
||
|
protected function setUp()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
protected function tearDown()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
// tests
|
||
|
public function testMe()
|
||
|
{
|
||
|
}
|
||
|
}
|