Write tests for IntentScheduler

This commit is contained in:
2020-09-19 17:29:55 -05:00
parent ddea9e78a9
commit 720f98f9bd
9 changed files with 232 additions and 22 deletions

View File

@@ -162,10 +162,16 @@ public class ReminderScheduler implements CommandRunner.Listener
public interface SystemScheduler
{
void scheduleShowReminder(long reminderTime, Habit habit, long timestamp);
SchedulerResult scheduleShowReminder(long reminderTime, Habit habit, long timestamp);
void scheduleWidgetUpdate(long updateTime);
SchedulerResult scheduleWidgetUpdate(long updateTime);
void log(String componentName, String msg);
}
public enum SchedulerResult
{
IGNORED,
OK
}
}