Last change
on this file since 25a549 was 2e06c4, checked in by Frederik Heber <heber@…>, 15 years ago |
Added all commands defined in ParseCommandLineOptions() as Actions.
- Actions are not yet used, except verbose, version and help.
- Files are present and included in Makefile.am
- not unit tests written so far
- no action has been tested so far (except for MapOfActions)
- structure introduced to to transition from ParseCommandLineOptions to actions.
- program name and config file are fixed arguments.
Signed-off-by: Frederik Heber <heber@…>
|
-
Property mode
set to
100644
|
File size:
795 bytes
|
Line | |
---|
1 | /*
|
---|
2 | * analysisbondsunittest.hpp
|
---|
3 | *
|
---|
4 | * Created on: Nov 7, 2009
|
---|
5 | * Author: heber
|
---|
6 | */
|
---|
7 |
|
---|
8 | #ifndef MAPOFACTIONS_HPP_
|
---|
9 | #define MAPOFACTIONS_HPP_
|
---|
10 |
|
---|
11 | #include <cppunit/extensions/HelperMacros.h>
|
---|
12 |
|
---|
13 | class BondGraph;
|
---|
14 | class element;
|
---|
15 | class molecule;
|
---|
16 | class periodentafel;
|
---|
17 |
|
---|
18 | /********************************************** Test classes **************************************/
|
---|
19 |
|
---|
20 | class MapOfActionsTest : public CppUnit::TestFixture
|
---|
21 | {
|
---|
22 | CPPUNIT_TEST_SUITE( MapOfActionsTest) ;
|
---|
23 | CPPUNIT_TEST ( ShortFormConsistencyTest );
|
---|
24 | CPPUNIT_TEST ( OptionsListsConsistencyTest );
|
---|
25 | CPPUNIT_TEST_SUITE_END();
|
---|
26 |
|
---|
27 | public:
|
---|
28 | void setUp();
|
---|
29 | void tearDown();
|
---|
30 | void ShortFormConsistencyTest();
|
---|
31 | void OptionsListsConsistencyTest();
|
---|
32 |
|
---|
33 | private:
|
---|
34 |
|
---|
35 | MapOfActions *ActionData;
|
---|
36 |
|
---|
37 | #endif /* MAPOFACTIONS_HPP_ */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.