コード例 #1
0
  public void testSetAndGetIsSoundNotificationTrackMarkedAsScrobbledEnabled() {
    WAILSettings.setSoundNotificationTrackMarkedAsScrobbledEnabled(getContext(), true);
    assertTrue(WAILSettings.isSoundNotificationTrackMarkedAsScrobbledEnabled(getContext()));

    WAILSettings.setSoundNotificationTrackMarkedAsScrobbledEnabled(getContext(), false);
    assertFalse(WAILSettings.isSoundNotificationTrackMarkedAsScrobbledEnabled(getContext()));
  }
コード例 #2
0
 public void testIsSoundNotificationTrackMarkedAsScrobbledEnabledDefault() {
   assertFalse(WAILSettings.isSoundNotificationTrackMarkedAsScrobbledEnabled(getContext()));
 }