00001
00002
00003 #ifndef LEAVALIDATE_H
00004 #define LEAVALIDATE_H
00005
00007
00008
00009
00010
00011
00012
00014
00015 #include "Rtypes.h"
00016
00017 class LeaValidate
00018 {
00019
00020 public:
00021
00022
00023
00024 LeaValidate();
00025 virtual ~LeaValidate();
00026
00027
00028
00029
00030
00031 Bool_t RunAllTests();
00032 Bool_t RunTest(Int_t testNum);
00033
00034 private:
00035
00036
00037 enum { kNUMTESTS = 1 };
00038
00039
00040 Bool_t Test_1();
00041
00042
00043 Int_t fNumFail;
00044 Int_t fNumPass;
00045
00046 ClassDef(LeaValidate,0)
00047
00048 };
00049
00050
00051 #endif // LEAVALIDATE_H