testLoader.cpp

Go to the documentation of this file.
00001 /*==============================================================================
00002  * FILE:       testLoader.cc
00003  * OVERVIEW:   Command line test of the BinaryFile and related classes.
00004  *============================================================================*/
00005 /*
00006  * $Revision: 1.3 $
00007  *    Apr 02 - Mike: Created
00008  * 03 Apr 02 - Mike: Modified to use CppUnit 1.6.2.
00009  */
00010 
00011 
00012 #include "cppunit/TextTestResult.h"
00013 #include "cppunit/TestSuite.h"
00014 
00015 #include <iostream>
00016 #include "LoaderTest.h"
00017 
00018 int main(int argc, char** argv)
00019 {
00020     CppUnit::TestSuite suite;
00021 
00022     LoaderTest lt("ExpTest");
00023 
00024     lt.registerTests(&suite);
00025 
00026     CppUnit::TextTestResult res;
00027 
00028     suite.run( &res );
00029     std::cout << res << std::endl;
00030 
00031     return 0;
00032 }
00033 

Generated on Tue Sep 19 21:18:35 2006 for Boomerang by  doxygen 1.4.6