summaryrefslogtreecommitdiff
path: root/maximus/sci/inc/SciMsgTest.h
blob: d588f55ce7958a3b4aa84f6239c51d63f7d9f59a (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#ifndef SCIMSGTEST_H
#define SCIMSGTEST_H

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

class SciMsg;
class IFunctionCall;
class ISci;
class ISystem;
class IPhy;
class IEthernet;
class INetworkClock;


class SciMsgTest : public CPPUNIT_NS::TestFixture
{
  
	CPPUNIT_TEST_SUITE (SciMsgTest);
	CPPUNIT_TEST (simpleTest);
  CPPUNIT_TEST_SUITE_END ();

public:
  
  void setUp (void);
	void tearDown (void);

protected:
  
	void simpleTest (void);
  
private:

	SciMsg * mpFunctionSciMsg;
  SciMsg * mpClockSciMsg;
  SciMsg * mpSystemSciMsg;
  SciMsg * mpPhySciMsg;
  SciMsg * mpEtherSciMsg;
  IFunctionCall * mpFunctionCallManager;
  ISci * mpSciServer;
  ISystem * mpSystemManager;
  IPhy * mpPhyProcessor;
  IEthernet * mpEthernet;
  INetworkClock * mpNetworkClock;

};


#endif // SCIMSGTEST_H