1 #ifndef TestOneWayANOVA_h
2 #define TestOneWayANOVA_h
3 
4 #include <cstdio>
5 #include <cstdlib>
6 #include <string>
7 #include <iostream>
8 #include <vector>
9 #include <map>
10 
11 #include "suite.h"
12 #include "Factor.h"
13 #include "Response.h"
14 #include "OneWayANOVA.h"
15 
16 class TestOneWayANOVA : public Test
17 {
18   public:
19     TestOneWayANOVA();
20     ~TestOneWayANOVA();
21 
22     void run();
23     void testConstructor();
24     void testGetANOVATables();
25 
26   private:
27 
28 };
29 
30 #endif
31