mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
164 lines
4.6 KiB
PHP
164 lines
4.6 KiB
PHP
|
<?php
|
||
|
use FireflyIII\Repositories\PiggyBank\PiggyBankRepository;
|
||
|
|
||
|
/**
|
||
|
* Generated by PHPUnit_SkeletonGenerator on 2015-05-05 at 19:19:32.
|
||
|
*/
|
||
|
class PiggyBankRepositoryTest extends TestCase
|
||
|
{
|
||
|
/**
|
||
|
* @var PiggyBankRepository
|
||
|
*/
|
||
|
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 PiggyBankRepository;
|
||
|
parent::setUp();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Tears down the fixture, for example, closes a network connection.
|
||
|
* This method is called after a test is executed.
|
||
|
*/
|
||
|
public function tearDown()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers FireflyIII\Repositories\PiggyBank\PiggyBankRepository::calculateParts
|
||
|
* @todo Implement testCalculateParts().
|
||
|
*/
|
||
|
public function testCalculateParts()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers FireflyIII\Repositories\PiggyBank\PiggyBankRepository::createEvent
|
||
|
* @todo Implement testCreateEvent().
|
||
|
*/
|
||
|
public function testCreateEvent()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers FireflyIII\Repositories\PiggyBank\PiggyBankRepository::createPiggyBankPart
|
||
|
* @todo Implement testCreatePiggyBankPart().
|
||
|
*/
|
||
|
public function testCreatePiggyBankPart()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers FireflyIII\Repositories\PiggyBank\PiggyBankRepository::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\PiggyBank\PiggyBankRepository::getEventSummarySet
|
||
|
* @todo Implement testGetEventSummarySet().
|
||
|
*/
|
||
|
public function testGetEventSummarySet()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers FireflyIII\Repositories\PiggyBank\PiggyBankRepository::getEvents
|
||
|
* @todo Implement testGetEvents().
|
||
|
*/
|
||
|
public function testGetEvents()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers FireflyIII\Repositories\PiggyBank\PiggyBankRepository::getPiggyBanks
|
||
|
* @todo Implement testGetPiggyBanks().
|
||
|
*/
|
||
|
public function testGetPiggyBanks()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers FireflyIII\Repositories\PiggyBank\PiggyBankRepository::reset
|
||
|
* @todo Implement testReset().
|
||
|
*/
|
||
|
public function testReset()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers FireflyIII\Repositories\PiggyBank\PiggyBankRepository::setOrder
|
||
|
* @todo Implement testSetOrder().
|
||
|
*/
|
||
|
public function testSetOrder()
|
||
|
{
|
||
|
// Remove the following lines when you implement this test.
|
||
|
$this->markTestIncomplete(
|
||
|
'This test has not been implemented yet.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @covers FireflyIII\Repositories\PiggyBank\PiggyBankRepository::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\PiggyBank\PiggyBankRepository::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.'
|
||
|
);
|
||
|
}
|
||
|
}
|