From 3bc82e0f005e34a2ead1ad022626687f9fa27458 Mon Sep 17 00:00:00 2001 From: Pierre Gergondet <pierre.gergondet@aist.go.jp> Date: Wed, 5 Mar 2014 13:24:47 +0900 Subject: [PATCH] Remove test for deprecated function --- unitTesting/interpreter-test.cc | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/unitTesting/interpreter-test.cc b/unitTesting/interpreter-test.cc index 268ba30..a3db8ce 100644 --- a/unitTesting/interpreter-test.cc +++ b/unitTesting/interpreter-test.cc @@ -10,20 +10,12 @@ int main(int argc, char ** argv) dynamicgraph::python::Interpreter interp; std::string command; + std::string result; + std::string out; + std::string err; for (int i=0; i<numTest; ++i) { - //correct input - command = "print \"Hello world\""; - interp.python(command); - - //incorrect input - command = "print Hello"; - interp.python(command); - - std::string result; - std::string out; - std::string err; //correct input interp.python("print \"I am the interpreter\"", result, out, err); //incorrect input -- GitLab