Exemplo n.º 1
0
        public void ShouldMatchBeginsWithWrongCaseString()
        {
            var matcher = new StringBeginsWithMatcher("lorem")
            {
                IgnoreCase = true
            };

            Assert.True(matcher.Match(INPUT));
        }
Exemplo n.º 2
0
        public void ShouldNotbeginWith()
        {
            var matcher = new StringBeginsWithMatcher("Dolor");

            Assert.False(matcher.Match(INPUT));
        }
Exemplo n.º 3
0
        public void ShouldBeginWithString()
        {
            var matcher = new StringBeginsWithMatcher("Lorem");

            Assert.True(matcher.Match(INPUT));
        }