| 123456789101112131415161718 |
- 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);
- }
- }
- }
|