summaryrefslogtreecommitdiff
path: root/cesar/maximus/functioncall/inc/IFunctionCallTest.h
blob: 68fd2edca9cd86d9718f895ee32d0c4afae4e4a1 (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 IFUNCTIONCALLTEST_H
#define IFUNCTIONCALLTEST_H

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

class FunctionSciMsg;

void userFunction ( const FunctionSciMsg & function_sci_msg );


class IFunctionCallTest : public CPPUNIT_NS::TestFixture
{

	CPPUNIT_TEST_SUITE (IFunctionCallTest);
	CPPUNIT_TEST (userTest);
	CPPUNIT_TEST_SUITE_END ();

public:

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

protected:

	void userTest (void);

private:

};


#endif // IFUNCTIONCALLTEST_H