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