00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #include "cppunit/TextTestResult.h"
00013 #include "cppunit/TestSuite.h"
00014
00015 #include "FrontSparcTest.h"
00016 #include "FrontPentTest.h"
00017
00018 #include "prog.h"
00019 #include <iostream>
00020
00021 int main(int argc, char** argv)
00022 {
00023 CppUnit::TestSuite suite;
00024
00025
00026
00027
00028 FrontPentTest fSt("FrontPentTest");
00029
00030
00031
00032 fSt.registerTests(&suite);
00033
00034 CppUnit::TextTestResult res;
00035
00036 prog.readLibParams();
00037 suite.run( &res );
00038 std::cout << res << std::endl;
00039
00040 return 0;
00041 }
00042