comparison base/test/svcore-base-test.cpp @ 1612:23a29e5dc0e9 single-point

Start implementing & testing PointSeries
author Chris Cannam
date Wed, 06 Mar 2019 16:24:23 +0000
parents a090221caeda
children 24dc8cb42755
comparison
equal deleted inserted replaced
1611:b2f32c554199 1612:23a29e5dc0e9
18 #include "TestStringBits.h" 18 #include "TestStringBits.h"
19 #include "TestOurRealTime.h" 19 #include "TestOurRealTime.h"
20 #include "TestVampRealTime.h" 20 #include "TestVampRealTime.h"
21 #include "TestColumnOp.h" 21 #include "TestColumnOp.h"
22 #include "TestMovingMedian.h" 22 #include "TestMovingMedian.h"
23 #include "TestPointSeries.h"
23 24
24 #include "system/Init.h" 25 #include "system/Init.h"
25 26
26 #include <QtTest> 27 #include <QtTest>
27 28
82 { 83 {
83 TestMovingMedian t; 84 TestMovingMedian t;
84 if (QTest::qExec(&t, argc, argv) == 0) ++good; 85 if (QTest::qExec(&t, argc, argv) == 0) ++good;
85 else ++bad; 86 else ++bad;
86 } 87 }
88 {
89 TestPointSeries t;
90 if (QTest::qExec(&t, argc, argv) == 0) ++good;
91 else ++bad;
92 }
87 93
88 if (bad > 0) { 94 if (bad > 0) {
89 SVCERR << "\n********* " << bad << " test suite(s) failed!\n" << endl; 95 SVCERR << "\n********* " << bad << " test suite(s) failed!\n" << endl;
90 return 1; 96 return 1;
91 } else { 97 } else {