Candidate_v1.6.1
Last change
on this file was c52abd, checked in by Frederik Heber <frederik.heber@…>, 7 years ago |
Added unit test for Graph6Reader.
|
-
Property mode
set to
100644
|
File size:
613 bytes
|
Line | |
---|
1 | /*
|
---|
2 | * Graph6ReaderUnitTest.hpp
|
---|
3 | *
|
---|
4 | * Created on: Oct 17, 2011
|
---|
5 | * Author: heber
|
---|
6 | */
|
---|
7 |
|
---|
8 | #ifndef GRAPH6READERUNITTEST_HPP_
|
---|
9 | #define GRAPH6READERUNITTEST_HPP_
|
---|
10 |
|
---|
11 | // include config.h
|
---|
12 | #ifdef HAVE_CONFIG_H
|
---|
13 | #include <config.h>
|
---|
14 | #endif
|
---|
15 |
|
---|
16 |
|
---|
17 | #include <cppunit/extensions/HelperMacros.h>
|
---|
18 |
|
---|
19 | #include "Graph/Graph6Reader.hpp"
|
---|
20 |
|
---|
21 |
|
---|
22 | class Graph6ReaderTest : public CppUnit::TestFixture
|
---|
23 | {
|
---|
24 | CPPUNIT_TEST_SUITE( Graph6ReaderTest );
|
---|
25 | CPPUNIT_TEST ( operatorTest );
|
---|
26 | CPPUNIT_TEST_SUITE_END();
|
---|
27 |
|
---|
28 | public:
|
---|
29 | void setUp();
|
---|
30 | void tearDown();
|
---|
31 |
|
---|
32 | void operatorTest();
|
---|
33 |
|
---|
34 | private:
|
---|
35 | Graph6Reader reader;
|
---|
36 | };
|
---|
37 |
|
---|
38 | #endif /* GRAPH6READERUNITTEST_HPP_ */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.