26 lines
754 B
C++
26 lines
754 B
C++
/*
|
|
* caca-test testsuite program for libcaca
|
|
* Copyright (c) 2008 Sam Hocevar <samhocevar.net>
|
|
* All Rights Reserved
|
|
*
|
|
* This program is free software. It comes without any warranty, to
|
|
* the extent permitted by applicable law. You can redistribute it
|
|
* and/or modify it under the terms of the Do What the Fuck You Want
|
|
* to Public License, Version 2, as published by Sam Hocevar. See
|
|
* http://www.wtfpl.net/ for more details.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <cppunit/TextTestRunner.h>
|
|
#include <cppunit/extensions/TestFactoryRegistry.h>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
CppUnit::TextTestRunner runner;
|
|
runner.addTest(CppUnit::TestFactoryRegistry::getRegistry().makeTest());
|
|
|
|
return !runner.run();
|
|
}
|
|
|