firefly-iii/tests/controllers/charts/ChartCategoryControllerTest.php
2015-05-18 17:57:44 +02:00

46 lines
858 B
PHP

<?php
/**
* Class ChartCategoryControllerTest
*/
class ChartCategoryControllerTest 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();
}
/**
* 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 testAll()
{
$this->markTestIncomplete();
}
public function testFrontpage()
{
$this->markTestIncomplete();
}
public function testMonth()
{
$this->markTestIncomplete();
}
public function testYear()
{
$this->markTestIncomplete();
}
}