Files
firefly-iii/tests/acceptance/Controllers/Chart/AccountControllerTest.php
James Cole 62a9fda1c2 New tests.
2016-12-04 08:11:29 +01:00

138 lines
3.7 KiB
PHP

<?php
namespace Chart;
use TestCase;
/**
* Generated by PHPUnit_SkeletonGenerator on 2016-12-04 at 07:07:40.
*/
class AccountControllerTest extends TestCase
{
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
public function setUp()
{
parent::setUp();
}
/**
* @covers FireflyIII\Http\Controllers\Chart\AccountController::expenseAccounts
* Implement testExpenseAccounts().
*/
public function testExpenseAccounts()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers FireflyIII\Http\Controllers\Chart\AccountController::expenseByBudget
* Implement testExpenseByBudget().
*/
public function testExpenseByBudget()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers FireflyIII\Http\Controllers\Chart\AccountController::expenseByCategory
* Implement testExpenseByCategory().
*/
public function testExpenseByCategory()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers FireflyIII\Http\Controllers\Chart\AccountController::frontpage
* Implement testFrontpage().
*/
public function testFrontpage()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers FireflyIII\Http\Controllers\Chart\AccountController::incomeByCategory
* Implement testIncomeByCategory().
*/
public function testIncomeByCategory()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers FireflyIII\Http\Controllers\Chart\AccountController::report
* Implement testReport().
*/
public function testReport()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers FireflyIII\Http\Controllers\Chart\AccountController::revenueAccounts
* Implement testRevenueAccounts().
*/
public function testRevenueAccounts()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers FireflyIII\Http\Controllers\Chart\AccountController::single
* Implement testSingle().
*/
public function testSingle()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers FireflyIII\Http\Controllers\Chart\AccountController::specificPeriod
* Implement testSpecificPeriod().
*/
public function testSpecificPeriod()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
protected function tearDown()
{
}
}