C++ Library containing a lot of needful things: Stack Trace, Command Line Parser, Resource Handling, Configuration Files, Unix Command Execution, Directories, Regular Expressions, Tokenizer, Function Trace, Standard Extensions.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.3 KiB
47 lines
1.3 KiB
/** @file |
|
|
|
$Id$ |
|
|
|
$Date$ |
|
$Author$ |
|
|
|
@copy © Marc Wäckerlin |
|
@license LGPL, see file <a href="license.html">COPYING</a> |
|
|
|
$Log$ |
|
Revision 1.1 2005/02/18 15:53:56 marc |
|
initial release |
|
|
|
|
|
1 2 3 4 5 6 7 8 |
|
5678901234567890123456789012345678901234567890123456789012345678901234567890 |
|
*/ |
|
|
|
#include <mrw/dynamiclibrary.hxx> |
|
#include <cppunit/TestFixture.h> |
|
#include <cppunit/ui/text/TestRunner.h> |
|
#include <cppunit/extensions/HelperMacros.h> |
|
#include <cppunit/extensions/TestFactoryRegistry.h> |
|
|
|
class DynamicLibraryTest: public CppUnit::TestFixture { |
|
public: |
|
void Load() { |
|
mrw::DynamicLibrary lib("libdynamiclibrary_testlib"); |
|
int(*test1)(int) = (int(*)(int))lib.symbol("test1"); |
|
CPPUNIT_ASSERT((*test1)(2)==4); |
|
} |
|
void LoadError() { |
|
mrw::DynamicLibrary lib("DASist-Sicher_Keine_DynamischePHIPLIOTEEK!!!"); |
|
} |
|
CPPUNIT_TEST_SUITE(DynamicLibraryTest); |
|
CPPUNIT_TEST(Load); |
|
CPPUNIT_TEST_EXCEPTION(LoadError, mrw::DynamicLibrary::failure); |
|
CPPUNIT_TEST_SUITE_END(); |
|
}; |
|
CPPUNIT_TEST_SUITE_REGISTRATION(DynamicLibraryTest); |
|
|
|
int main() { |
|
CppUnit::TextUi::TestRunner runner; |
|
runner.addTest(CppUnit::TestFactoryRegistry::getRegistry().makeTest()); |
|
return runner.run() ? 0 : 1; |
|
}
|
|
|