Ejemplo n.º 1
0
  public void testSetAndGetIsSoundNotificationTrackSkippedEnabled() {
    WAILSettings.setSoundNotificationTrackSkippedEnabled(getContext(), true);
    assertTrue(WAILSettings.isSoundNotificationTrackSkippedEnabled(getContext()));

    WAILSettings.setSoundNotificationTrackSkippedEnabled(getContext(), false);
    assertFalse(WAILSettings.isSoundNotificationTrackSkippedEnabled(getContext()));
  }
Ejemplo n.º 2
0
 public void testIsSoundNotificationTrackSkippedEnabledDefault() {
   assertFalse(WAILSettings.isSoundNotificationTrackSkippedEnabled(getContext()));
 }