1 #ifndef TEST_STAT_H
2 #define TEST_STAT_H
3 
4 #include "suite.h"
5 #include "Statistics.h"
6 #include "arrcmp.h"
7 
8 class TestStatistics : public Test
9 {
10   public:
11 	TestStatistics();
12 	~TestStatistics();
13 
14 	void run();
15 	void testAll();
16 };
17 
18 #endif
19