示例#1
0
            public void ItShouldMatchStringWhenNotEmpty()
            {
                var result = new OnConditionComponent("col1=col2")
                             .GetValue();

                Assert.That(result == "ON col1=col2");
            }
示例#2
0
            public void ItShouldMatchStringWhenEmpty()
            {
                var result = new OnConditionComponent("")
                             .GetValue();

                Assert.That(result.Trim() == "ON");
            }