summaryrefslogtreecommitdiffstats
path: root/tests/auto/unit/mockbackend
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/unit/mockbackend')
-rw-r--r--tests/auto/unit/mockbackend/CMakeLists.txt1
-rw-r--r--tests/auto/unit/mockbackend/common.pri1
-rw-r--r--tests/auto/unit/mockbackend/mockmediasource.h44
3 files changed, 0 insertions, 46 deletions
diff --git a/tests/auto/unit/mockbackend/CMakeLists.txt b/tests/auto/unit/mockbackend/CMakeLists.txt
index b63e1f635..5b43b75a9 100644
--- a/tests/auto/unit/mockbackend/CMakeLists.txt
+++ b/tests/auto/unit/mockbackend/CMakeLists.txt
@@ -25,7 +25,6 @@ target_sources(QtMultimediaMockBackend INTERFACE
mockmediarecordercontrol.h
mockmediarecorderservice.h
mockmediaservice.h
- mockmediasource.h
mockmediastreamscontrol.h
mockvideosurface.h
qmockdevicemanager.cpp
diff --git a/tests/auto/unit/mockbackend/common.pri b/tests/auto/unit/mockbackend/common.pri
index cba7b96c7..fd64fe21b 100644
--- a/tests/auto/unit/mockbackend/common.pri
+++ b/tests/auto/unit/mockbackend/common.pri
@@ -1,5 +1,4 @@
INCLUDEPATH += $$PWD
HEADERS += \
$$PWD/mockmediaservice.h \
- $$PWD/mockmediasource.h \
$$PWD/mockvideosurface.h
diff --git a/tests/auto/unit/mockbackend/mockmediasource.h b/tests/auto/unit/mockbackend/mockmediasource.h
deleted file mode 100644
index 5417027a6..000000000
--- a/tests/auto/unit/mockbackend/mockmediasource.h
+++ /dev/null
@@ -1,44 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the test suite of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:GPL-EXCEPT$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3 as published by the Free Software
-** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#ifndef MOCKMEDIASOURCE_H
-#define MOCKMEDIASOURCE_H
-
-#include "qmediasource.h"
-
-class MockMediaSource : public QMediaSource
-{
- Q_OBJECT
-public:
- MockMediaSource(QObject *parent, QMediaService *service):
- QMediaSource(parent, service)
- {
- }
-};
-
-#endif // MOCKMEDIASOURCE_H