mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-27 11:20:39 -06:00
30 lines
475 B
PHP
30 lines
475 B
PHP
<?php
|
|
use Mockery as m;
|
|
|
|
/**
|
|
* Class ReportControllerTest
|
|
*
|
|
* @SuppressWarnings(PHPMD.TooManyMethods)
|
|
* @SuppressWarnings(PHPMD.CamelCasePropertyName)
|
|
*/
|
|
class ReportControllerTest extends TestCase
|
|
{
|
|
|
|
public function setUp()
|
|
{
|
|
parent::setUp();
|
|
|
|
}
|
|
|
|
public function tearDown()
|
|
{
|
|
m::close();
|
|
}
|
|
|
|
public function testIndex()
|
|
{
|
|
$this->action('GET', 'ReportController@index');
|
|
$this->assertResponseOk();
|
|
}
|
|
|
|
}
|