-
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.
✅ Add CoreMalariaProfileActivity tests
- Loading branch information
Showing
3 changed files
with
124 additions
and
2 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
35 changes: 35 additions & 0 deletions
35
...java/org/smartregister/chw/core/activity/impl/FamilyOtherMemberActivityPresenterImpl.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,35 @@ | ||
package org.smartregister.chw.core.activity.impl; | ||
|
||
import android.content.Context; | ||
|
||
import org.smartregister.chw.core.contract.FamilyOtherMemberProfileExtendedContract; | ||
import org.smartregister.chw.core.interactor.CoreFamilyProfileInteractor; | ||
import org.smartregister.chw.core.presenter.CoreFamilyOtherMemberActivityPresenter; | ||
import org.smartregister.family.contract.FamilyOtherMemberContract; | ||
import org.smartregister.family.contract.FamilyProfileContract; | ||
|
||
public class FamilyOtherMemberActivityPresenterImpl extends CoreFamilyOtherMemberActivityPresenter { | ||
public FamilyOtherMemberActivityPresenterImpl(FamilyOtherMemberProfileExtendedContract.View view, FamilyOtherMemberContract.Model model, String viewConfigurationIdentifier, String familyBaseEntityId, String baseEntityId, String familyHead, String primaryCaregiver, String villageTown, String familyName) { | ||
super(view, model, viewConfigurationIdentifier, familyBaseEntityId, baseEntityId, familyHead, primaryCaregiver, villageTown, familyName); | ||
} | ||
|
||
@Override | ||
protected CoreFamilyProfileInteractor getFamilyProfileInteractor() { | ||
return null; | ||
} | ||
|
||
@Override | ||
protected FamilyProfileContract.Model getFamilyProfileModel(String familyName) { | ||
return null; | ||
} | ||
|
||
@Override | ||
protected void setProfileInteractor() { | ||
// Do nothing | ||
} | ||
|
||
@Override | ||
public void updateFamilyMember(Context context, String jsonString, boolean isIndependent) { | ||
// Do nothing | ||
} | ||
} |