Files
firefly-iii/tests/controllers/charts/ChartReportControllerTest.php

36 lines
707 B
PHP
Raw Normal View History

2015-05-18 17:57:44 +02:00
<?php
/**
* Class ChartReportControllerTest
*/
class ChartReportControllerTest 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 testYearInOut()
{
$this->markTestIncomplete();
}
public function testYearInOutSummarized()
{
$this->markTestIncomplete();
}
2015-05-20 19:56:14 +02:00
}