From 33451a9cf9d3d186e0db2020de5e00d444c29216 Mon Sep 17 00:00:00 2001 From: Thomas Adamcik Date: Sun, 14 Feb 2010 04:21:11 +0100 Subject: [PATCH] Add placeholder tests --- tests/backends/basetests.py | 57 +++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) diff --git a/tests/backends/basetests.py b/tests/backends/basetests.py index 3d6345d5..702ea80d 100644 --- a/tests/backends/basetests.py +++ b/tests/backends/basetests.py @@ -334,3 +334,60 @@ class BasePlaybackControllerTest(object): self.playback.play() self.playback.next() self.assertEqual(self.playback.playlist_position, 1) + + def test_new_playlist_loaded_callback(self): + raise NotImplementedError + + def test_pause_when_stopped(self): + raise NotImplementedError + + def test_pause_when_playing(self): + raise NotImplementedError + + def test_resume_when_stopped(self): + raise NotImplementedError + + def test_resume_when_playing(self): + raise NotImplementedError + + def test_seek_when_stopped(self): + raise NotImplementedError + + def test_seek_when_playing(self): + raise NotImplementedError + + def test_stop_when_stopped(self): + raise NotImplementedError + + def test_stop_when_playing(self): + raise NotImplementedError + + def test_time_position_when_stopped(self): + raise NotImplementedError + + def test_time_position_when_playing(self): + raise NotImplementedError + + def test_volume(self): + raise NotImplementedError + + def test_play_with_consume(self): + raise NotImplementedError + + def test_next_with_consume(self): + raise NotImplementedError + + def test_previous_track_with_consume(self): + raise NotImplementedError + + def test_play_with_shuffle(self): + raise NotImplementedError + + def test_next_with_shuffle(self): + raise NotImplementedError + + def test_next_track_with_shuffle(self): + raise NotImplementedError + + def test_previous_track_with_shuffle(self): + raise NotImplementedError