コード例 #1
0
  public void testSetAndGetIsSoundNotificationTrackSkippedEnabled() {
    WAILSettings.setSoundNotificationTrackSkippedEnabled(getContext(), true);
    assertTrue(WAILSettings.isSoundNotificationTrackSkippedEnabled(getContext()));

    WAILSettings.setSoundNotificationTrackSkippedEnabled(getContext(), false);
    assertFalse(WAILSettings.isSoundNotificationTrackSkippedEnabled(getContext()));
  }
コード例 #2
0
 public void testIsSoundNotificationTrackSkippedEnabledDefault() {
   assertFalse(WAILSettings.isSoundNotificationTrackSkippedEnabled(getContext()));
 }