mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-05 21:53:08 -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()
|
|
{
|
|
}
|
|
}
|