diff 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
line wrap: on
line diff
--- a/base/test/svcore-base-test.cpp	Tue Mar 05 15:15:11 2019 +0000
+++ b/base/test/svcore-base-test.cpp	Wed Mar 06 16:24:23 2019 +0000
@@ -20,6 +20,7 @@
 #include "TestVampRealTime.h"
 #include "TestColumnOp.h"
 #include "TestMovingMedian.h"
+#include "TestPointSeries.h"
 
 #include "system/Init.h"
 
@@ -84,6 +85,11 @@
         if (QTest::qExec(&t, argc, argv) == 0) ++good;
         else ++bad;
     }
+    {
+        TestPointSeries t;
+        if (QTest::qExec(&t, argc, argv) == 0) ++good;
+        else ++bad;
+    }
 
     if (bad > 0) {
         SVCERR << "\n********* " << bad << " test suite(s) failed!\n" << endl;