summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Kast <julian@livio.com>2020-03-30 12:55:21 -0400
committerJulian Kast <julian@livio.com>2020-03-30 12:55:21 -0400
commit0af803c2a248dcd423d20f05aed055b052df7b34 (patch)
treec90c86d0565c95ff5a2627040902705c57efa33b
parent45c8c3bc4814b69229a17be2f3079aa86f6b44dd (diff)
downloadsdl_android-0af803c2a248dcd423d20f05aed055b052df7b34.tar.gz
Removed old test that get covered in newly added test testShouldSendText
-rw-r--r--android/sdl_android/src/androidTest/java/com/smartdevicelink/managers/screen/choiceset/PreloadChoicesOperationTests.java18
1 files changed, 1 insertions, 17 deletions
diff --git a/android/sdl_android/src/androidTest/java/com/smartdevicelink/managers/screen/choiceset/PreloadChoicesOperationTests.java b/android/sdl_android/src/androidTest/java/com/smartdevicelink/managers/screen/choiceset/PreloadChoicesOperationTests.java
index b4a37e94c..d08b33b00 100644
--- a/android/sdl_android/src/androidTest/java/com/smartdevicelink/managers/screen/choiceset/PreloadChoicesOperationTests.java
+++ b/android/sdl_android/src/androidTest/java/com/smartdevicelink/managers/screen/choiceset/PreloadChoicesOperationTests.java
@@ -145,22 +145,6 @@ public class PreloadChoicesOperationTests extends AndroidTestCase2 {
super.tearDown();
}
- public void testHasTextFieldOfName(){
- boolean test = preloadChoicesOperation.hasTextFieldOfName(TextFieldName.secondaryText);
- assertFalse(test);
-
- boolean test2 = preloadChoicesOperation.hasTextFieldOfName(TextFieldName.menuName);
- assertTrue(test2);
- }
-
- public void testHasImageFieldOfName(){
- boolean test = preloadChoicesOperation.hasImageFieldOfName(ImageFieldName.choiceImage);
- assertTrue(test);
-
- boolean test2 = preloadChoicesOperation.hasImageFieldOfName(ImageFieldName.appIcon);
- assertFalse(test2);
- }
-
public void testArtworkNeedsUpload(){
boolean test = preloadChoicesOperation.artworkNeedsUpload(Test.GENERAL_ARTWORK);
assertTrue(test);
@@ -175,7 +159,7 @@ public class PreloadChoicesOperationTests extends AndroidTestCase2 {
/**
* Testing shouldSend method's with varying WindowCapability set.
*/
- public void testsShouldSendText() {
+ public void testShouldSendText() {
setUpNullWindowCapability();
assertTrue(preloadChoicesOperationNullCapability.shouldSendChoicePrimaryImage());
assertTrue(preloadChoicesOperationNullCapability.shouldSendChoiceSecondaryImage());