using System.Diagnostics; using Xunit; namespace WePlatform.ExprFunctions { public class ExprFunctionTest { private string Result { get; set; } [Fact] public void Test1() { var exprStr = "RunStartPackage('12345678')"; //Result = ExprModule.Evaluate(exprStr); Debug.WriteLine(exprStr); } } }