public static bool testIronPython(string scriptToExecute, string expectedDataReceived) { var IronPythonExecution = new IronPythonShell(); var dataReceived = IronPythonExecution.executeScript(scriptToExecute); return(dataReceived == expectedDataReceived); }
public static bool testIronPython(string scriptToExecute, string expectedDataReceived) { var IronPythonExecution = new IronPythonShell(); var dataReceived = IronPythonExecution.executeScript(scriptToExecute); return dataReceived == expectedDataReceived; }