General cleanup and new (incomplete) tests.

This commit is contained in:
James Cole
2015-04-06 09:15:59 +02:00
parent 1035f0e139
commit c907cb4cf1
9 changed files with 385 additions and 171 deletions

View File

@@ -0,0 +1,107 @@
<?php
/**
* Class GoogleChartControllerTest
*/
class GoogleChartControllerTest 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();
}
/**
* This method is called before the first test of this test class is run.
*
* @since Method available since Release 3.4.0
*/
public static function setUpBeforeClass()
{
parent::setUpBeforeClass();
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
public function tearDown()
{
parent::tearDown();
}
public function testAccountBalanceChart()
{
$this->markTestIncomplete();
}
public function testAllAccountsBalanceChart()
{
$this->markTestIncomplete();
}
public function testAllBudgetsAndSpending()
{
$this->markTestIncomplete();
}
public function testAllBudgetsHomeChart()
{
$this->markTestIncomplete();
}
public function testAllCategoriesHomeChart()
{
$this->markTestIncomplete();
}
public function testBillOverview()
{
$this->markTestIncomplete();
}
public function testBillsOverview()
{
$this->markTestIncomplete();
}
public function testBudgetLimitSpending()
{
$this->markTestIncomplete();
}
public function testBudgetsAndSpending()
{
$this->markTestIncomplete();
}
public function testCategoryOverviewChart()
{
$this->markTestIncomplete();
}
public function testCategoryPeriodChart()
{
$this->markTestIncomplete();
}
public function testPiggyBankHistory()
{
$this->markTestIncomplete();
}
public function testYearInExp()
{
$this->markTestIncomplete();
}
public function testYearInExpSum()
{
$this->markTestIncomplete();
}
}