root/libcaca/trunk/test/caca-test.cpp

Revision 4333, 0.7 kB (checked in by sam, 7 months ago)

Large source code cleanup, getting rid of spaces, tabs, and svn keywords.

Line 
1/*
2 *  caca-test     testsuite program for libcaca
3 *  Copyright (c) 2008 Sam Hocevar <samhocevar.net>
4 *                All Rights Reserved
5 *
6 *  This program is free software. It comes without any warranty, to
7 *  the extent permitted by applicable law. You can redistribute it
8 *  and/or modify it under the terms of the Do What The Fuck You Want
9 *  To Public License, Version 2, as published by Sam Hocevar. See
10 *  http://sam.zoy.org/wtfpl/COPYING for more details.
11 */
12
13#include "config.h"
14
15#include <cppunit/TextTestRunner.h>
16#include <cppunit/extensions/TestFactoryRegistry.h>
17
18int main(int argc, char *argv[])
19{
20    CppUnit::TextTestRunner runner;
21    runner.addTest(CppUnit::TestFactoryRegistry::getRegistry().makeTest());
22
23    return !runner.run();
24}
Note: See TracBrowser for help on using the browser.