Generic hardware access library
|
00001 #ifndef __ExceptionTester 00002 #define __ExceptionTester 00003 00004 #include "IllegalOperationException.hh" 00005 #include "TesterInterface.hh" 00006 #include <sstream> 00007 00008 using std::cout; 00009 using std::stringstream; 00010 using std::string; 00011 using std::ends; 00012 using std::endl; 00013 00014 #define VMEADDRESSTABLE "VMEAsciiAddressTable.dat" 00015 00016 00017 namespace HAL { 00018 00019 class ExceptionTester:public HAL::TesterInterface { 00020 public: 00021 bool execute(); 00022 string getName() const { 00023 return string("ExceptionTester"); 00024 } 00025 string getDescription() const; 00026 }; 00027 00028 } /* namespace HAL */ 00029 00030 #endif /* __ExceptionTester */ 00031 00032 00033 00034 00035 00036