Skip to content
Snippets Groups Projects
Commit ded79527 authored by olivier stasse's avatar olivier stasse
Browse files

Merge pull request #9 from gergondet/topic/RemoveTestForDeprecatedFunction

Remove test for deprecated function
parents 72446bce 3bc82e0f
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment