summaryrefslogtreecommitdiff
path: root/maximus/functioncall
diff options
context:
space:
mode:
authorburet2007-08-10 15:43:06 +0000
committerburet2007-08-10 15:43:06 +0000
commit66eb0bc9ae2250826b0d51c157fb7cff9418599a (patch)
tree602ee68974c9415d31cf64d5090c5c81a7842d3a /maximus/functioncall
parentc00710cfeeed40ae48356a4d1929789dd13e4727 (diff)
Modify unitary tests to be launched with a station executable
git-svn-id: svn+ssh://pessac/svn/cesar/trunk@589 017c9cb6-072f-447c-8318-d5b54f68fe89
Diffstat (limited to 'maximus/functioncall')
-rw-r--r--maximus/functioncall/src/FunctionCallManagerTest.cpp4
-rw-r--r--maximus/functioncall/src/IFunctionCallTest.cpp2
2 files changed, 5 insertions, 1 deletions
diff --git a/maximus/functioncall/src/FunctionCallManagerTest.cpp b/maximus/functioncall/src/FunctionCallManagerTest.cpp
index d23bc20e2b..87ae718ed4 100644
--- a/maximus/functioncall/src/FunctionCallManagerTest.cpp
+++ b/maximus/functioncall/src/FunctionCallManagerTest.cpp
@@ -2,6 +2,8 @@
#include "FunctionCallManagerTest.h"
#include "FunctionSciMsg.h"
+#include "Error.h"
+
#include <iostream>
using namespace std;
@@ -15,7 +17,7 @@ void FunctionCallManagerTest::setUp (void)
clog << "\tFunctionCallManagerTest -> SciServer()" << endl;
mpSciServer = new SciServer ();
clog << "\tFunctionCallManagerTest -> FunctionCallManager(SciServer*)" << endl;
- mpFunctionCallManager = new FunctionCallManager ();
+ mpFunctionCallManager = new FunctionCallManager (mpSciServer);
}
diff --git a/maximus/functioncall/src/IFunctionCallTest.cpp b/maximus/functioncall/src/IFunctionCallTest.cpp
index e7f48bdef1..120640fa27 100644
--- a/maximus/functioncall/src/IFunctionCallTest.cpp
+++ b/maximus/functioncall/src/IFunctionCallTest.cpp
@@ -6,6 +6,8 @@
#include "FunctionCallParameter.h"
#include "SystemManager.h"
+#include "Error.h"
+
#include <iostream>
using namespace std;