mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-07 06:33:57 -06:00
177 lines
4.9 KiB
PHP
177 lines
4.9 KiB
PHP
<?php
|
|
use FireflyIII\Repositories\Journal\JournalRepository;
|
|
|
|
/**
|
|
* Generated by PHPUnit_SkeletonGenerator on 2015-05-05 at 19:19:32.
|
|
*/
|
|
class JournalRepositoryTest extends TestCase
|
|
{
|
|
/**
|
|
* @var JournalRepository
|
|
*/
|
|
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 JournalRepository;
|
|
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\Journal\JournalRepository::deactivateReminder
|
|
* @todo Implement testDeactivateReminder().
|
|
*/
|
|
public function testDeactivateReminder()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers FireflyIII\Repositories\Journal\JournalRepository::delete
|
|
* @todo Implement testDelete().
|
|
*/
|
|
public function testDelete()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers FireflyIII\Repositories\Journal\JournalRepository::first
|
|
* @todo Implement testFirst().
|
|
*/
|
|
public function testFirst()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers FireflyIII\Repositories\Journal\JournalRepository::getAmountBefore
|
|
* @todo Implement testGetAmountBefore().
|
|
*/
|
|
public function testGetAmountBefore()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers FireflyIII\Repositories\Journal\JournalRepository::getJournalsOfType
|
|
* @todo Implement testGetJournalsOfType().
|
|
*/
|
|
public function testGetJournalsOfType()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers FireflyIII\Repositories\Journal\JournalRepository::getJournalsOfTypes
|
|
* @todo Implement testGetJournalsOfTypes().
|
|
*/
|
|
public function testGetJournalsOfTypes()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers FireflyIII\Repositories\Journal\JournalRepository::getTransactionType
|
|
* @todo Implement testGetTransactionType().
|
|
*/
|
|
public function testGetTransactionType()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers FireflyIII\Repositories\Journal\JournalRepository::getWithDate
|
|
* @todo Implement testGetWithDate().
|
|
*/
|
|
public function testGetWithDate()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers FireflyIII\Repositories\Journal\JournalRepository::saveTags
|
|
* @todo Implement testSaveTags().
|
|
*/
|
|
public function testSaveTags()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers FireflyIII\Repositories\Journal\JournalRepository::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\Journal\JournalRepository::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.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers FireflyIII\Repositories\Journal\JournalRepository::updateTags
|
|
* @todo Implement testUpdateTags().
|
|
*/
|
|
public function testUpdateTags()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
}
|