1 /*
2  * steghide 0.5.1 - a steganogrchy program
3  * Copyright (C) 1999-2003 Stefan Hetzl <shetzl@chello.at>
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License
7  * as published by the Free Software Foundation; either version 2
8  * of the License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18  *
19  */
20 
21 #ifndef SH_WKSCONSTRUCTIONHEURISTICTEST_H
22 #define SH_WKSCONSTRUCTIONHEURISTICTEST_H
23 
24 class BitString ;
25 class WKSConstructionHeuristic ;
26 class CvrStgFile ;
27 class Graph ;
28 class Matching ;
29 class Selector ;
30 
31 #include "UnitTest.h"
32 #include "TestSuite.h"
33 
34 class WKSConstructionHeuristicTest : public UnitTest {
35 	public:
36 	WKSConstructionHeuristicTest (TestSuite* s) ;
37 
38 	void setup (void) ;
39 	void cleanup (void) ;
40 
41 	void testAlgorithm (void) ;
42 
43 	private:
44 	BitString *bs1, *bs2, *bs3 ;
45 	CvrStgFile *f1, *f2, *f3 ;
46 	Selector *s1, *s2, *s3 ;
47 	Graph *g1, *g2, *g3 ;
48 	WKSConstructionHeuristic *ch1, *ch2, *ch3 ;
49 	Matching *m1, *m2, *m3 ;
50 	Globals gl1, gl2, gl3 ;
51 } ;
52 
53 #endif // ndef SH_WKSCONSTRUCTIONHEURISTICTEST_H
54