Skip to content

Commit 63b579d

Browse files
committed
Remove unnecessary unit tests
1 parent 0f191c5 commit 63b579d

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

AndroidSDKTests/src/test/java/com/leanplum/LeanplumMiPushHandlerTest.java

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -116,22 +116,4 @@ public void testParsePayloadMessage() {
116116
assertEquals(nestedItem, handler.parsePayload("{\"lp_version\":\"1\", \"lp_channel\":{\"importance\":3,\"name\":\"rondo-channel\",\"id\":\"123\"}, \"lp_message\":\"Push message goes here.\", \"_lpm\":\"4700540011347968\", \"_lpx\":{\"__name__\":\"Request App Rating\"}}"));
117117
}
118118

119-
@Test
120-
public void testSetApplicationFail() {
121-
String appId = "";
122-
String appKey = "";
123-
LeanplumMiPushHandler.setApplication(appId, appKey);
124-
LeanplumMiPushProvider provider = new LeanplumMiPushProvider();
125-
assertFalse(provider.appRegistered);
126-
}
127-
128-
@Test
129-
public void testSetApplication() {
130-
String appId = "id";
131-
String appKey = "key";
132-
LeanplumMiPushHandler.setApplication(appId, appKey);
133-
LeanplumMiPushProvider provider = new LeanplumMiPushProvider();
134-
assertTrue(provider.appRegistered);
135-
}
136-
137119
}

0 commit comments

Comments
 (0)