steghide  0.5.1
GraphTest.h
Go to the documentation of this file.
1 /*
2  * steghide 0.5.1 - a steganography 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_GRAPHTEST_H
22 #define SH_GRAPHTEST_H
23 
24 #include "UnitTest.h"
25 
26 class TestSuite ;
27 class CvrStgFile ;
28 class BitString ;
29 class Selector ;
30 class Graph ;
31 
32 class GraphTest : public UnitTest {
33  public:
34  GraphTest (TestSuite* s) ;
35 
36  void setup (void) ;
37  void cleanup (void) ;
38 
39  void testVertices (void) ;
40  void testSampleValues (void) ;
41  void testSampleOccurences (void) ;
42  void testSampleValueAdjacencyLists (void) ;
43 
44  private:
45  CvrStgFile *f1, *f2, *f3, *f4, *f5, *f6, *f7, *f8, *f9, *f10, *f11, *f12, *f13, *f14, *f15, *f_f ;
46  BitString *bs1, *bs2, *bs3, *bs4, *bs5, *bs6, *bs7, *bs8, *bs9, *bs10, *bs11, *bs12, *bs13, *bs14, *bs15, *bs_f ;
47  Selector *s1, *s2, *s3, *s4, *s5, *s6, *s7, *s8, *s9, *s10, *s11, *s12, *s13, *s14, *s15, *s_f ;
48  Graph *g1, *g2, *g3, *g4, *g5, *g6, *g7, *g8, *g9, *g10, *g11, *g12, *g13, *g14, *g15, *g_f ;
50 } ;
51 
52 #endif // ndef SH_GRAPHTEST_H