mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-19 19:01:58 +00:00
76 lines
2.0 KiB
PHP
76 lines
2.0 KiB
PHP
![]() |
<?php
|
||
|
/**
|
||
|
* ReportControllerTest.php
|
||
|
* Copyright (C) 2016 Sander Dorigo
|
||
|
*
|
||
|
* This software may be modified and distributed under the terms
|
||
|
* of the MIT license. See the LICENSE file for details.
|
||
|
*/
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Generated by PHPUnit_SkeletonGenerator on 2016-01-19 at 15:39:28.
|
||
|
*/
|
||
|
class ReportControllerTest extends TestCase
|
||
|
{
|
||
|
/**
|
||
|
* @covers FireflyIII\Http\Controllers\ReportController::defaultMonth
|
||
|
* @todo Implement testDefaultMonth().
|
||
|
*/
|
||
|
public function testDefaultMonth()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers FireflyIII\Http\Controllers\ReportController::defaultMultiYear
|
||
|
* @todo Implement testDefaultMultiYear().
|
||
|
*/
|
||
|
public function testDefaultMultiYear()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers FireflyIII\Http\Controllers\ReportController::defaultYear
|
||
|
* @todo Implement testDefaultYear().
|
||
|
*/
|
||
|
public function testDefaultYear()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers FireflyIII\Http\Controllers\ReportController::index
|
||
|
* @todo Implement testIndex().
|
||
|
*/
|
||
|
public function testIndex()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers FireflyIII\Http\Controllers\ReportController::report
|
||
|
* @todo Implement testReport().
|
||
|
*/
|
||
|
public function testReport()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
}
|