firefly-iii/tests/controllers/GoogleChartControllerTest.php
2015-04-06 09:15:59 +02:00

107 lines
2.0 KiB
PHP

<?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();
}
}