public void testSetAndGetIsSoundNotificationTrackSkippedEnabled() { WAILSettings.setSoundNotificationTrackSkippedEnabled(getContext(), true); assertTrue(WAILSettings.isSoundNotificationTrackSkippedEnabled(getContext())); WAILSettings.setSoundNotificationTrackSkippedEnabled(getContext(), false); assertFalse(WAILSettings.isSoundNotificationTrackSkippedEnabled(getContext())); }
public void testIsSoundNotificationTrackSkippedEnabledDefault() { assertFalse(WAILSettings.isSoundNotificationTrackSkippedEnabled(getContext())); }