annotate base/test/main.cpp @ 879:eb6b6a88faed

Unit-test RangeMapper, fix a couple of bugs
author Chris Cannam
date Fri, 31 Jan 2014 13:39:37 +0000
parents
children 4cc8265c4611
rev   line source
Chris@879 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@879 2 /*
Chris@879 3 Sonic Visualiser
Chris@879 4 An audio file viewer and annotation editor.
Chris@879 5 Centre for Digital Music, Queen Mary, University of London.
Chris@879 6
Chris@879 7 This program is free software; you can redistribute it and/or
Chris@879 8 modify it under the terms of the GNU General Public License as
Chris@879 9 published by the Free Software Foundation; either version 2 of the
Chris@879 10 License, or (at your option) any later version. See the file
Chris@879 11 COPYING included with this distribution for more information.
Chris@879 12 */
Chris@879 13
Chris@879 14 #include "RangeMapperTest.h"
Chris@879 15
Chris@879 16 #include <QtTest>
Chris@879 17
Chris@879 18 #include <iostream>
Chris@879 19
Chris@879 20 int main(int argc, char *argv[])
Chris@879 21 {
Chris@879 22 int good = 0, bad = 0;
Chris@879 23
Chris@879 24 QCoreApplication app(argc, argv);
Chris@879 25 app.setOrganizationName("Sonic Visualiser");
Chris@879 26 app.setApplicationName("test-svcore-base");
Chris@879 27
Chris@879 28 {
Chris@879 29 RangeMapperTest t;
Chris@879 30 if (QTest::qExec(&t, argc, argv) == 0) ++good;
Chris@879 31 else ++bad;
Chris@879 32 }
Chris@879 33
Chris@879 34 if (bad > 0) {
Chris@879 35 cerr << "\n********* " << bad << " test suite(s) failed!\n" << endl;
Chris@879 36 return 1;
Chris@879 37 } else {
Chris@879 38 cerr << "All tests passed" << endl;
Chris@879 39 return 0;
Chris@879 40 }
Chris@879 41 }