From c21c81f2c72a9dd3c802cdff9fadd99487c9d8b2 Mon Sep 17 00:00:00 2001 From: Branden Archer Date: Fri, 11 Mar 2016 21:16:22 -0500 Subject: [PATCH] Correct names of unit tests Some of the tests mentioned "Gift" cards, but should mention "Loyalty" cards instead. Additionally, made one unit test's intention more clear. --- .../protect/card_locker/LoyaltyCardViewActivityTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/src/test/java/protect/card_locker/LoyaltyCardViewActivityTest.java b/app/src/test/java/protect/card_locker/LoyaltyCardViewActivityTest.java index 909ffc525..55fcf0aff 100644 --- a/app/src/test/java/protect/card_locker/LoyaltyCardViewActivityTest.java +++ b/app/src/test/java/protect/card_locker/LoyaltyCardViewActivityTest.java @@ -231,7 +231,7 @@ public class LoyaltyCardViewActivityTest } @Test - public void startWithoutParametersCaptureBarcodeCreateGiftCard() throws IOException + public void startWithoutParametersCaptureBarcodeCreateLoyaltyCard() throws IOException { registerMediaStoreIntentHandler(); @@ -307,7 +307,7 @@ public class LoyaltyCardViewActivityTest } @Test - public void startWithGiftCardCheckDisplay() throws IOException + public void startWithLoyaltyCardEditModeCheckDisplay() throws IOException { ActivityController activityController = createActivityWithLoyaltyCard(); Activity activity = (Activity)activityController.get(); @@ -344,7 +344,7 @@ public class LoyaltyCardViewActivityTest } @Test - public void startWithGiftCardWithReceiptUpdateReceiptCancel() throws IOException + public void startWithLoyaltyCardWithReceiptUpdateReceiptCancel() throws IOException { ActivityController activityController = createActivityWithLoyaltyCard(); Activity activity = (Activity)activityController.get();