Skip to content

Commit

Permalink
Stop testing deprecated start methods (#904)
Browse files Browse the repository at this point in the history
## Goal

Remove tests for deprecated start method so the compiler doesn't yell at me.
  • Loading branch information
bidetofevil committed May 30, 2024
2 parents 9ab695e + a94b46f commit 56a4649
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,12 @@ public class PreSdkStartTest {
public void testStartWithNullContext() {
embrace.start(null);
embrace.start(null, Embrace.AppFramework.NATIVE);
embrace.start(null, true);
embrace.start(null, false, Embrace.AppFramework.NATIVE);
assertFalse(embrace.isStarted());
}

@Test
public void testStartWithNullAppFramework() {
Context context = testRule.harness.getOverriddenCoreModule().getContext();
embrace.start(context, false, null);
embrace.start(context, null);
assertFalse(embrace.isStarted());
}
Expand Down

0 comments on commit 56a4649

Please sign in to comment.