comparison data/fileio/test/svcore-data-fileio-test.cpp @ 1869:cb9209ef373a startup-timing

Merge from default branch
author Chris Cannam
date Tue, 16 Jun 2020 17:44:06 +0100
parents 2654bf447a84
children
comparison
equal deleted inserted replaced
1865:7b6e18380e8f 1869:cb9209ef373a
16 #include "BogusAudioFileReaderTest.h" 16 #include "BogusAudioFileReaderTest.h"
17 #include "AudioFileWriterTest.h" 17 #include "AudioFileWriterTest.h"
18 #include "EncodingTest.h" 18 #include "EncodingTest.h"
19 #include "MIDIFileReaderTest.h" 19 #include "MIDIFileReaderTest.h"
20 #include "CSVFormatTest.h" 20 #include "CSVFormatTest.h"
21 #include "CSVReaderTest.h"
21 #include "CSVStreamWriterTest.h" 22 #include "CSVStreamWriterTest.h"
22 23
23 #include "system/Init.h" 24 #include "system/Init.h"
24 25
25 #include <QtTest> 26 #include <QtTest>
88 if (QTest::qExec(&t, argc, argv) == 0) ++good; 89 if (QTest::qExec(&t, argc, argv) == 0) ++good;
89 else ++bad; 90 else ++bad;
90 } 91 }
91 92
92 { 93 {
94 CSVReaderTest t(testDir);
95 if (QTest::qExec(&t, argc, argv) == 0) ++good;
96 else ++bad;
97 }
98
99 {
93 CSVStreamWriterTest t; 100 CSVStreamWriterTest t;
94 if (QTest::qExec(&t, argc, argv) == 0) ++good; 101 if (QTest::qExec(&t, argc, argv) == 0) ++good;
95 else ++bad; 102 else ++bad;
96 } 103 }
97 104