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