public void testSetAndGetIsSoundNotificationTrackMarkedAsScrobbledEnabled() {
    WAILSettings.setSoundNotificationTrackMarkedAsScrobbledEnabled(getContext(), true);
    assertTrue(WAILSettings.isSoundNotificationTrackMarkedAsScrobbledEnabled(getContext()));

    WAILSettings.setSoundNotificationTrackMarkedAsScrobbledEnabled(getContext(), false);
    assertFalse(WAILSettings.isSoundNotificationTrackMarkedAsScrobbledEnabled(getContext()));
  }
 public void testIsSoundNotificationTrackMarkedAsScrobbledEnabledDefault() {
   assertFalse(WAILSettings.isSoundNotificationTrackMarkedAsScrobbledEnabled(getContext()));
 }