ExprFunctionTest.cs 383 B

123456789101112131415161718
  1. using System.Diagnostics;
  2. using Xunit;
  3. namespace WePlatform.ExprFunctions
  4. {
  5. public class ExprFunctionTest
  6. {
  7. private string Result { get; set; }
  8. [Fact]
  9. public void Test1()
  10. {
  11. var exprStr = "RunStartPackage('12345678')";
  12. //Result = ExprModule.Evaluate(exprStr);
  13. Debug.WriteLine(exprStr);
  14. }
  15. }
  16. }