public void ShouldMatchSameStringWithDifferentCase() { var matcher = new StringIsMatcher("hello world") { IgnoreCase = true }; Assert.True(matcher.Match("Hello World")); }
public void ShouldNotMatchDifferentString() { var matcher = new StringIsMatcher("hello world"); Assert.False(matcher.Match("helloworld")); }
public void ShouldMatchSameString() { var matcher = new StringIsMatcher("hello world"); Assert.True(matcher.Match("hello world")); }