mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-04 19:50:55 +00: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();
|
||
|
}
|
||
|
|
||
|
}
|