summaryrefslogtreecommitdiff
path: root/cesar/maximus/system/inc/StationConfigurationTest.h
blob: 958857ffce2622ae17aba4844f6fb92760a1277f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#ifndef STATIONCONFIGURATIONTEST_H
#define STATIONCONFIGURATIONTEST_H

#include <cppunit/TestFixture.h>
#include <cppunit/extensions/HelperMacros.h>

class StationConfiguration;


class StationConfigurationTest : public CPPUNIT_NS::TestFixture
{

	CPPUNIT_TEST_SUITE (StationConfigurationTest);
  CPPUNIT_TEST (setStationNameTest);
	CPPUNIT_TEST_SUITE_END ();

public:

	void setUp (void);
	void tearDown (void);

protected:

	void setStationNameTest (void);

private:

	StationConfiguration * mpStationConfiguration;
    
};


#endif // STATIONCONFIGURATIONTEST_H