mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-22 06:23:12 -06:00
177 lines
5.0 KiB
PHP
177 lines
5.0 KiB
PHP
<?php
|
|
use FireflyIII\Repositories\Category\CategoryRepository;
|
|
|
|
/**
|
|
* Generated by PHPUnit_SkeletonGenerator on 2015-05-05 at 19:19:32.
|
|
*/
|
|
class CategoryRepositoryTest extends TestCase
|
|
{
|
|
/**
|
|
* @var CategoryRepository
|
|
*/
|
|
protected $object;
|
|
|
|
/**
|
|
* Sets up the fixture, for example, opens a network connection.
|
|
* This method is called before a test is executed.
|
|
*/
|
|
public function setUp()
|
|
{
|
|
$this->object = new CategoryRepository;
|
|
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();
|
|
}
|
|
|
|
/**
|
|
* @covers FireflyIII\Repositories\Category\CategoryRepository::countJournals
|
|
* @todo Implement testCountJournals().
|
|
*/
|
|
public function testCountJournals()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers FireflyIII\Repositories\Category\CategoryRepository::destroy
|
|
* @todo Implement testDestroy().
|
|
*/
|
|
public function testDestroy()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers FireflyIII\Repositories\Category\CategoryRepository::getCategories
|
|
* @todo Implement testGetCategories().
|
|
*/
|
|
public function testGetCategories()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers FireflyIII\Repositories\Category\CategoryRepository::getCategoriesAndExpenses
|
|
* @todo Implement testGetCategoriesAndExpenses().
|
|
*/
|
|
public function testGetCategoriesAndExpenses()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers FireflyIII\Repositories\Category\CategoryRepository::getFirstActivityDate
|
|
* @todo Implement testGetFirstActivityDate().
|
|
*/
|
|
public function testGetFirstActivityDate()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers FireflyIII\Repositories\Category\CategoryRepository::getJournals
|
|
* @todo Implement testGetJournals().
|
|
*/
|
|
public function testGetJournals()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers FireflyIII\Repositories\Category\CategoryRepository::getLatestActivity
|
|
* @todo Implement testGetLatestActivity().
|
|
*/
|
|
public function testGetLatestActivity()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers FireflyIII\Repositories\Category\CategoryRepository::getWithoutCategory
|
|
* @todo Implement testGetWithoutCategory().
|
|
*/
|
|
public function testGetWithoutCategory()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers FireflyIII\Repositories\Category\CategoryRepository::spentInPeriodSum
|
|
* @todo Implement testSpentInPeriodSum().
|
|
*/
|
|
public function testSpentInPeriodSum()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers FireflyIII\Repositories\Category\CategoryRepository::spentOnDaySum
|
|
* @todo Implement testSpentOnDaySum().
|
|
*/
|
|
public function testSpentOnDaySum()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers FireflyIII\Repositories\Category\CategoryRepository::store
|
|
* @todo Implement testStore().
|
|
*/
|
|
public function testStore()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers FireflyIII\Repositories\Category\CategoryRepository::update
|
|
* @todo Implement testUpdate().
|
|
*/
|
|
public function testUpdate()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
}
|