mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-08 23:24:07 -06:00
82 lines
2.2 KiB
PHP
82 lines
2.2 KiB
PHP
<?php
|
|
use FireflyIII\Repositories\Reminder\ReminderRepository;
|
|
|
|
/**
|
|
* Generated by PHPUnit_SkeletonGenerator on 2015-05-05 at 19:19:32.
|
|
*/
|
|
class ReminderRepositoryTest extends TestCase
|
|
{
|
|
/**
|
|
* @var ReminderRepository
|
|
*/
|
|
protected $object;
|
|
|
|
/**
|
|
* Sets up the fixture, for example, opens a network connection.
|
|
* This method is called before a test is executed.
|
|
*/
|
|
public function setUp()
|
|
{
|
|
parent::setUp();
|
|
$this->object = new ReminderRepository;
|
|
|
|
}
|
|
|
|
/**
|
|
* 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\Reminder\ReminderRepository::getActiveReminders
|
|
* @todo Implement testGetActiveReminders().
|
|
*/
|
|
public function testGetActiveReminders()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers FireflyIII\Repositories\Reminder\ReminderRepository::getDismissedReminders
|
|
* @todo Implement testGetDismissedReminders().
|
|
*/
|
|
public function testGetDismissedReminders()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers FireflyIII\Repositories\Reminder\ReminderRepository::getExpiredReminders
|
|
* @todo Implement testGetExpiredReminders().
|
|
*/
|
|
public function testGetExpiredReminders()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers FireflyIII\Repositories\Reminder\ReminderRepository::getInactiveReminders
|
|
* @todo Implement testGetInactiveReminders().
|
|
*/
|
|
public function testGetInactiveReminders()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
}
|