#include "AutoTest.h"

#if 1
// This is all you need to run all the tests
TEST_MAIN
#else
#include <QtCore/QDebug>
// Or supply your own main function
int main(int argc, char *argv[])
{
    int failures = AutoTest::run(argc, argv);
    if (failures == 0)
    {
	qDebug() << "ALL TESTS PASSED";
    }
    else
    {
	qDebug() << failures << " TESTS FAILED!";
    }
    return failures;
}
#endif
