1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
/*
* 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://sam.zoy.org/wtfpl/COPYING for more details.
*/
#include "config.h"
#include <cppunit/extensions/HelperMacros.h>
#include <cppunit/TestCaller.h>
#include <cppunit/TestCase.h>
#include <cppunit/TestSuite.h>
#include "caca.h"
class DriverTest : public CppUnit::TestCase
{
CPPUNIT_TEST_SUITE(DriverTest);
CPPUNIT_TEST(test_list);
CPPUNIT_TEST_SUITE_END();
public:
DriverTest() : CppUnit::TestCase("Driver Test") {}
void setUp() {}
void tearDown() {}
void test_list()
{
char const * const * list;
list = caca_get_display_driver_list();
CPPUNIT_ASSERT(list != NULL);
CPPUNIT_ASSERT(list[0] != NULL);
}
};
CPPUNIT_TEST_SUITE_REGISTRATION(DriverTest);
|