]> git.sesse.net Git - mlt/blob - src/tests/test_repository/test_repository.cpp
Add the start of a unit test suite using QtTest.
[mlt] / src / tests / test_repository / test_repository.cpp
1 /*
2  * Copyright (C) 2013 Dan Dennedy <dan@dennedy.org>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with consumer library; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  */
18
19 #include <QString>
20 #include <QtTest>
21
22 #include <mlt++/Mlt.h>
23 using namespace Mlt;
24
25 class TestRepository : public QObject
26 {
27     Q_OBJECT
28     
29 public:
30     TestRepository() {}
31     
32 private Q_SLOTS:
33     void ThereAreProducers()
34     {
35         Repository* r = Factory::init();
36         Properties* producers = r->producers();
37         QVERIFY(producers->is_valid());
38         if (producers->is_valid())
39             QVERIFY(producers->count() > 0);
40         delete producers;
41     }
42
43     void ThereAreConsumers()
44     {
45         Repository* r = Factory::init();
46         Properties* consumers = r->consumers();
47         QVERIFY(consumers->is_valid());
48         if (consumers->is_valid())
49             QVERIFY(consumers->count() > 0);
50         delete consumers;
51     }
52 };
53
54 QTEST_APPLESS_MAIN(TestRepository)
55
56 #include "test_repository.moc"