Exemple #1
0
        public static bool testJython(string scriptToExecute, string expectedDataReceived)
        {
            var jythonExecution = new JythonShell();
            var dataReceived    = jythonExecution.executeScript(scriptToExecute);

            return(dataReceived == expectedDataReceived);
        }
 public static bool testJython(string scriptToExecute, string expectedDataReceived)
 {
     var jythonExecution = new JythonShell();            
     var dataReceived = jythonExecution.executeScript(scriptToExecute);
     return dataReceived == expectedDataReceived;
 }