-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into Testing_Tuesday
- Loading branch information
Showing
3 changed files
with
64 additions
and
13 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
...hw-core/src/test/java/org/smartregister/chw/core/implementation/MonthlyAlertRuleImpl.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package org.smartregister.chw.core.implementation; | ||
|
||
import android.content.Context; | ||
|
||
import org.smartregister.chw.core.rule.MonthlyAlertRule; | ||
|
||
public class MonthlyAlertRuleImpl extends MonthlyAlertRule { | ||
|
||
public MonthlyAlertRuleImpl(Context context, long lastVisitDateLong, long dateCreatedLong) { | ||
super(context, lastVisitDateLong, dateCreatedLong); | ||
} | ||
|
||
@Override | ||
public String getRuleKey() { | ||
return null; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters