Skip to content

Commit

Permalink
Merge pull request #62 from OpenSRP/issue61
Browse files Browse the repository at this point in the history
RA| added mcv 1 and mcv2 and Yf vaccines in vaccineRepo
  • Loading branch information
Ephraim (Keyman) Muhia authored Feb 11, 2019
2 parents 861b220 + dd3ae0c commit a02eee7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION_NAME=1.4.3-SNAPSHOT
VERSION_NAME=1.4.4-SNAPSHOT
VERSION_CODE=2
GROUP=org.smartregister
POM_SETTING_DESCRIPTION=OpenSRP Client Immunization
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,17 @@ public enum Vaccine {
measles1("MEASLES 1", null, -1, 274, 0, "child"),
mr1("MR 1", null, -1, 274, 0, "child"),
opv4("OPV 4", null, 1830, 274, 28, "child"),
mcv1("MCV 1", null, -1, 274, 0, "child"),
yf("YF", null, -1, 274, 0, "child"),


mcv2("MCV 2", mcv1, -1, 456, 183, "child"),


measles2("MEASLES 2", measles1, -1, 548, 274, "child"),
mr2("MR 2", mr1, -1, 548, 274, "child"),


bcg2("BCG 2", null, 366, 0, 84, "child"),
ipv("IPV", opv3, 1830, 274, 28, "child"),

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ public void assertGetVaccinesWillReturnAccordingToCategoryChild() {
vaccines.add(VaccineRepo.Vaccine.measles1);
vaccines.add(VaccineRepo.Vaccine.mr1);
vaccines.add(VaccineRepo.Vaccine.opv4);
vaccines.add(VaccineRepo.Vaccine.mcv1);
vaccines.add(VaccineRepo.Vaccine.yf);
vaccines.add(VaccineRepo.Vaccine.mcv2);
vaccines.add(VaccineRepo.Vaccine.measles2);
vaccines.add(VaccineRepo.Vaccine.mr2);
vaccines.add(VaccineRepo.Vaccine.bcg2);
Expand Down

0 comments on commit a02eee7

Please sign in to comment.