public void TestCreateComplexCommand_InvalidSession() { MatlabEngine engine = new MatlabEngine(); engine.Shutdown(); engine.CreateCommand(new string[] { }); }
public void TestCreateCommand_InvalidSession() { string cmdText = "b=a*a"; MatlabEngine engine = new MatlabEngine(); engine.Shutdown(); engine.CreateCommand(cmdText); }