comparison base/test/svcore-base-test.cpp @ 1265:e2e66bfd4a88 3.0-integration

Start tests for ColumnOp (+ some resulting fixes)
author Chris Cannam
date Thu, 17 Nov 2016 11:56:54 +0000
parents c4f873749ab5
children 667e369cfeab
comparison
equal deleted inserted replaced
1264:a99641535e02 1265:e2e66bfd4a88
14 #include "TestRangeMapper.h" 14 #include "TestRangeMapper.h"
15 #include "TestPitch.h" 15 #include "TestPitch.h"
16 #include "TestStringBits.h" 16 #include "TestStringBits.h"
17 #include "TestOurRealTime.h" 17 #include "TestOurRealTime.h"
18 #include "TestVampRealTime.h" 18 #include "TestVampRealTime.h"
19 #include "TestColumnOp.h"
19 20
20 #include <QtTest> 21 #include <QtTest>
21 22
22 #include <iostream> 23 #include <iostream>
23 24
52 { 53 {
53 TestStringBits t; 54 TestStringBits t;
54 if (QTest::qExec(&t, argc, argv) == 0) ++good; 55 if (QTest::qExec(&t, argc, argv) == 0) ++good;
55 else ++bad; 56 else ++bad;
56 } 57 }
58 {
59 TestColumnOp t;
60 if (QTest::qExec(&t, argc, argv) == 0) ++good;
61 else ++bad;
62 }
57 63
58 if (bad > 0) { 64 if (bad > 0) {
59 cerr << "\n********* " << bad << " test suite(s) failed!\n" << endl; 65 cerr << "\n********* " << bad << " test suite(s) failed!\n" << endl;
60 return 1; 66 return 1;
61 } else { 67 } else {