testExp.cpp

Go to the documentation of this file.
00001 /*==============================================================================
00002  * FILE:       testExp.cpp
00003  * OVERVIEW:   Command line test of the Exp class
00004  *============================================================================*/
00005 /*
00006  * $Revision: 1.2 $
00007  * 15 Jul 02 - Mike: Created from testDbase
00008  * 29 Jul 03 - Mike: Created from testAll
00009 */
00010 
00011 
00012 #include "cppunit/TextTestResult.h"
00013 #include "cppunit/TestSuite.h"
00014 
00015 #include "ExpTest.h"
00016 
00017 #include <sstream>
00018 #include <iostream>
00019 
00020 int main(int argc, char** argv)
00021 {
00022     CppUnit::TestSuite suite;
00023 
00024     ExpTest  expt("ExpTest");
00025 
00026     expt.registerTests(&suite);
00027 
00028     CppUnit::TextTestResult res;
00029 
00030     suite.run( &res );
00031     std::cout << res << std::endl;
00032 
00033     return 0;
00034 }

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