summaryrefslogtreecommitdiffstats
path: root/tests/auto/unit/qmultimedia_common
diff options
context:
space:
mode:
authorAngus Cummings <angus.cummings@nokia.com>2012-04-12 14:44:28 +1000
committerQt by Nokia <qt-info@nokia.com>2012-04-14 06:57:33 +0200
commite24f4fed534dfee0dc3f31be0a70f9348c73be19 (patch)
treefa9d298af7742ae0d1324e5bdaccc4cdf541bac4 /tests/auto/unit/qmultimedia_common
parent02efdccae982452a101ea0c703d308ab8189e9fb (diff)
expanding unit test for QAudioDecoder
Looking for feedback concerning: implementation of the change desired functionality of QAudioDecoder Changed the behaviour of QAudioDecoder for more sane error output Change-Id: I82193a94b6fe1ef4202a4ac7bd95c607e0bee9c6 Reviewed-by: Michael Goddard <michael.goddard@nokia.com>
Diffstat (limited to 'tests/auto/unit/qmultimedia_common')
-rw-r--r--tests/auto/unit/qmultimedia_common/mockaudiodecoderservice.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/auto/unit/qmultimedia_common/mockaudiodecoderservice.h b/tests/auto/unit/qmultimedia_common/mockaudiodecoderservice.h
index 35db819e7..d3228686b 100644
--- a/tests/auto/unit/qmultimedia_common/mockaudiodecoderservice.h
+++ b/tests/auto/unit/qmultimedia_common/mockaudiodecoderservice.h
@@ -55,6 +55,7 @@ public:
: QMediaService(parent)
{
mockControl = new MockAudioDecoderControl(this);
+ validControl = mockControl;
}
~MockAudioDecoderService()
@@ -74,7 +75,18 @@ public:
Q_UNUSED(control);
}
+ void setControlNull()
+ {
+ mockControl = 0;
+ }
+
+ void setControlValid()
+ {
+ mockControl = validControl;
+ }
+
MockAudioDecoderControl *mockControl;
+ MockAudioDecoderControl *validControl;
};