-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #49 from OpenSRP/issue20-implement-record-malaria-…
…follow-up-visit Issue20 implement record malaria follow up visit
- Loading branch information
Showing
6 changed files
with
53 additions
and
27 deletions.
There are no files selected for viewing
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
8 changes: 8 additions & 0 deletions
8
opensrp-chw-malaria/src/main/res/drawable/record_btn_selector_overdue.xml
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,8 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:padding="40dp" | ||
android:shape="rectangle"> | ||
<corners android:radius="35dp" /> | ||
<solid android:color="@color/visit_status_over_due" /> <!-- the button color --> | ||
|
||
</shape> |
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
23 changes: 23 additions & 0 deletions
23
...-chw-malaria/src/test/java/org/smartregister/activity/BaseMalariaProfileActivityTest.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,23 @@ | ||
package org.smartregister.activity; | ||
|
||
import org.junit.Assert; | ||
import org.junit.Before; | ||
import org.junit.Test; | ||
import org.mockito.Mock; | ||
import org.mockito.MockitoAnnotations; | ||
import org.smartregister.chw.malaria.activity.BaseMalariaProfileActivity; | ||
|
||
public class BaseMalariaProfileActivityTest { | ||
@Mock | ||
protected BaseMalariaProfileActivity baseMalariaProfileActivity; | ||
|
||
@Before | ||
public void setUp() { | ||
MockitoAnnotations.initMocks(this); | ||
} | ||
|
||
@Test | ||
public void assertNotNull() { | ||
Assert.assertNotNull(baseMalariaProfileActivity); | ||
} | ||
} |
17 changes: 0 additions & 17 deletions
17
opensrp-chw-malaria/src/test/java/org/smartregister/malaria/ExampleUnitTest.java
This file was deleted.
Oops, something went wrong.