irules/test/test.core/GrammarTester.cs

19 lines
334 B
C#

11 months ago
using Irony.Interpreter;
using Irony.Parsing;
10 months ago
using irules.core;
11 months ago
using Xunit.Sdk;
namespace test.core;
10 months ago
public class GrammarTester : ClauseChecker
11 months ago
{
10 months ago
public GrammarTester() : base()
11 months ago
{
}
10 months ago
public void AssertParsed(string problem)
{
Assert.Equal( AppStatus.Ready,this.Parse(problem));
}
11 months ago
}