comparison base/test/svcore-base-test.cpp @ 1615:24dc8cb42755 single-point

Rename a number of classes and methods (including Point -> Event); comments
author Chris Cannam
date Thu, 07 Mar 2019 15:44:09 +0000
parents 23a29e5dc0e9
children 172bd3374adf
comparison
equal deleted inserted replaced
1614:2e14a7876945 1615:24dc8cb42755
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 #include "TestEventSeries.h"
24 24
25 #include "system/Init.h" 25 #include "system/Init.h"
26 26
27 #include <QtTest> 27 #include <QtTest>
28 28
84 TestMovingMedian t; 84 TestMovingMedian t;
85 if (QTest::qExec(&t, argc, argv) == 0) ++good; 85 if (QTest::qExec(&t, argc, argv) == 0) ++good;
86 else ++bad; 86 else ++bad;
87 } 87 }
88 { 88 {
89 TestPointSeries t; 89 TestEventSeries t;
90 if (QTest::qExec(&t, argc, argv) == 0) ++good; 90 if (QTest::qExec(&t, argc, argv) == 0) ++good;
91 else ++bad; 91 else ++bad;
92 } 92 }
93 93
94 if (bad > 0) { 94 if (bad > 0) {