object = new ReminderRepository; 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\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.' ); } }