mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-19 04:49:30 +00:00
Empty tests.
This commit is contained in:
195
app/tests/GoogleChartControllerTest.php
Normal file
195
app/tests/GoogleChartControllerTest.php
Normal file
@@ -0,0 +1,195 @@
|
||||
<?php
|
||||
/**
|
||||
* Generated by PHPUnit_SkeletonGenerator on 2014-11-18 at 09:03:44.
|
||||
*/
|
||||
class GoogleChartControllerTest extends TestCase
|
||||
{
|
||||
/**
|
||||
* @var GoogleChartController
|
||||
*/
|
||||
protected $object;
|
||||
|
||||
/**
|
||||
* Sets up the fixture, for example, opens a network connection.
|
||||
* This method is called before a test is executed.
|
||||
*/
|
||||
public function setUp()
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* Tears down the fixture, for example, closes a network connection.
|
||||
* This method is called after a test is executed.
|
||||
*/
|
||||
protected function tearDown()
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers GoogleChartController::accountBalanceChart
|
||||
* @todo Implement testAccountBalanceChart().
|
||||
*/
|
||||
public function testAccountBalanceChart()
|
||||
{
|
||||
// Remove the following lines when you implement this test.
|
||||
$this->markTestIncomplete(
|
||||
'This test has not been implemented yet.'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers GoogleChartController::accountSankeyInChart
|
||||
* @todo Implement testAccountSankeyInChart().
|
||||
*/
|
||||
public function testAccountSankeyInChart()
|
||||
{
|
||||
// Remove the following lines when you implement this test.
|
||||
$this->markTestIncomplete(
|
||||
'This test has not been implemented yet.'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers GoogleChartController::accountSankeyOutChart
|
||||
* @todo Implement testAccountSankeyOutChart().
|
||||
*/
|
||||
public function testAccountSankeyOutChart()
|
||||
{
|
||||
// Remove the following lines when you implement this test.
|
||||
$this->markTestIncomplete(
|
||||
'This test has not been implemented yet.'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers GoogleChartController::allAccountsBalanceChart
|
||||
* @todo Implement testAllAccountsBalanceChart().
|
||||
*/
|
||||
public function testAllAccountsBalanceChart()
|
||||
{
|
||||
// Remove the following lines when you implement this test.
|
||||
$this->markTestIncomplete(
|
||||
'This test has not been implemented yet.'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers GoogleChartController::allBudgetsHomeChart
|
||||
* @todo Implement testAllBudgetsHomeChart().
|
||||
*/
|
||||
public function testAllBudgetsHomeChart()
|
||||
{
|
||||
// Remove the following lines when you implement this test.
|
||||
$this->markTestIncomplete(
|
||||
'This test has not been implemented yet.'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers GoogleChartController::allCategoriesHomeChart
|
||||
* @todo Implement testAllCategoriesHomeChart().
|
||||
*/
|
||||
public function testAllCategoriesHomeChart()
|
||||
{
|
||||
// Remove the following lines when you implement this test.
|
||||
$this->markTestIncomplete(
|
||||
'This test has not been implemented yet.'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers GoogleChartController::budgetLimitSpending
|
||||
* @todo Implement testBudgetLimitSpending().
|
||||
*/
|
||||
public function testBudgetLimitSpending()
|
||||
{
|
||||
// Remove the following lines when you implement this test.
|
||||
$this->markTestIncomplete(
|
||||
'This test has not been implemented yet.'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers GoogleChartController::budgetsReportChart
|
||||
* @todo Implement testBudgetsReportChart().
|
||||
*/
|
||||
public function testBudgetsReportChart()
|
||||
{
|
||||
// Remove the following lines when you implement this test.
|
||||
$this->markTestIncomplete(
|
||||
'This test has not been implemented yet.'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers GoogleChartController::componentsAndSpending
|
||||
* @todo Implement testComponentsAndSpending().
|
||||
*/
|
||||
public function testComponentsAndSpending()
|
||||
{
|
||||
// Remove the following lines when you implement this test.
|
||||
$this->markTestIncomplete(
|
||||
'This test has not been implemented yet.'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers GoogleChartController::piggyBankHistory
|
||||
* @todo Implement testPiggyBankHistory().
|
||||
*/
|
||||
public function testPiggyBankHistory()
|
||||
{
|
||||
// Remove the following lines when you implement this test.
|
||||
$this->markTestIncomplete(
|
||||
'This test has not been implemented yet.'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers GoogleChartController::recurringOverview
|
||||
* @todo Implement testRecurringOverview().
|
||||
*/
|
||||
public function testRecurringOverview()
|
||||
{
|
||||
// Remove the following lines when you implement this test.
|
||||
$this->markTestIncomplete(
|
||||
'This test has not been implemented yet.'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers GoogleChartController::recurringTransactionsOverview
|
||||
* @todo Implement testRecurringTransactionsOverview().
|
||||
*/
|
||||
public function testRecurringTransactionsOverview()
|
||||
{
|
||||
// Remove the following lines when you implement this test.
|
||||
$this->markTestIncomplete(
|
||||
'This test has not been implemented yet.'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers GoogleChartController::yearInExp
|
||||
* @todo Implement testYearInExp().
|
||||
*/
|
||||
public function testYearInExp()
|
||||
{
|
||||
// Remove the following lines when you implement this test.
|
||||
$this->markTestIncomplete(
|
||||
'This test has not been implemented yet.'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers GoogleChartController::yearInExpSum
|
||||
* @todo Implement testYearInExpSum().
|
||||
*/
|
||||
public function testYearInExpSum()
|
||||
{
|
||||
// Remove the following lines when you implement this test.
|
||||
$this->markTestIncomplete(
|
||||
'This test has not been implemented yet.'
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user