File indexing completed on 2024-05-19 04:34:06

0001 /***************************************************************************
0002  *                                                                         *
0003  *   copyright : (C) 2007 The University of Toronto                        *
0004  *                                                                         *
0005  *   This program is free software; you can redistribute it and/or modify  *
0006  *   it under the terms of the GNU General Public License as published by  *
0007  *   the Free Software Foundation; either version 2 of the License, or     *
0008  *   (at your option) any later version.                                   *
0009  *                                                                         *
0010  ***************************************************************************/
0011 
0012 #include <QCoreApplication>
0013 
0014 #include <QtTest>
0015 
0016 #include "testdatasource.h"
0017 #include "testvector.h"
0018 #include "testscalar.h"
0019 #include "testmatrix.h"
0020 #include "testdatamatrix.h"
0021 #include "testgeneratedmatrix.h"
0022 #include "testcsd.h"
0023 #include "testpsd.h"
0024 #include "testhistogram.h"
0025 #include "testeditablematrix.h"
0026 #include "testlabelparser.h"
0027 #include "testeqparser.h"
0028 #include "testobjectstore.h"
0029 
0030 int main(int argc, char *argv[]) {
0031   QCoreApplication app(argc, argv);
0032 
0033   TestDataSource test1;
0034   QTest::qExec(&test1, argc, argv);
0035 
0036   TestVector test2;
0037   QTest::qExec(&test2, argc, argv);
0038 
0039   TestScalar test3;
0040   QTest::qExec(&test3, argc, argv);
0041 
0042   TestMatrix test4;
0043   QTest::qExec(&test4, argc, argv);
0044 
0045   TestPSD test5;
0046   QTest::qExec(&test5, argc, argv);
0047 
0048   TestHistogram test6;
0049   QTest::qExec(&test6, argc, argv);
0050 
0051   TestCSD test7;
0052   QTest::qExec(&test7, argc, argv);
0053 
0054   TestEditableMatrix test8;
0055   QTest::qExec(&test8, argc, argv);
0056 
0057   TestDataMatrix dataMatrixTest;
0058   QTest::qExec(&dataMatrixTest, argc, argv);
0059 
0060   TestGeneratedMatrix generatedMatrixTest;
0061   QTest::qExec(&generatedMatrixTest, argc, argv);
0062 
0063   TestLabelParser test9;
0064   QTest::qExec(&test9, argc, argv);
0065 
0066   TestEqParser test10;
0067   QTest::qExec(&test10, argc, argv);
0068 
0069   TestObjectStore test11;
0070   QTest::qExec(&test11, argc, argv);
0071 
0072   return 0;
0073 }
0074 
0075 // vim: ts=2 sw=2 et