summaryrefslogtreecommitdiff
path: root/cesar/maximus/phy/inc/PhySciMsgTest.h
blob: 4619423ac9ffec60f034b19d5c7cbd446ccebc2c (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
#ifndef PHYSCIMSGTEST_H
#define PHYSCIMSGTEST_H

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

class PhySciMsg;
class PhyProcessor;
class SciServer;


class PhySciMsgTest : public CPPUNIT_NS::TestFixture
{

	CPPUNIT_TEST_SUITE (PhySciMsgTest);
	CPPUNIT_TEST (dispatchMsgTest);
	CPPUNIT_TEST_SUITE_END ();

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

protected:
  
	void dispatchMsgTest (void);
	
private:
  
	PhySciMsg * mpPhySciMsg;
  PhyProcessor * mpPhyProcessor;
  SciServer * mpSciServer;
  
};


#endif // PHYSCIMSGTEST_H