mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-20 03:08:11 +00: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()
|
||
|
{
|
||
|
}
|
||
|
}
|