qcpix/tsrc/qttestutil/simplechecker.cpp
author hgs
Mon, 09 Aug 2010 10:51:30 +0530
changeset 14 8bd192d47aaa
parent 11 7c6f43cd91cf
permissions -rw-r--r--
201031

/*
 * Copyright (C) 2008  Remko Troncon
 * Licensed under the MIT license.
 * See COPYING for license details.
 */

#include <QCoreApplication>

#include "QtTestUtil/TestRegistry.h"

/**
 * Runs all tests registered with the QtTestUtil registry.
 */
int main(int argc, char* argv[]) {
    QCoreApplication application(argc, argv);
    return QtTestUtil::TestRegistry::getInstance()->runTests(argc, argv);
}