public void ShouldReturnFalseWhenLineDoesNotMatchDirectiveStringWithoutAnArgument()
 {
     var directiveLineProcessor = new TestableDirectiveLineProcessor();
     directiveLineProcessor.Matches("#NotATest").ShouldBeFalse();
 }
            public void ShouldReturnFalseWhenLineDoesNotMatchDirectiveStringWithoutAnArgument()
            {
                var directiveLineProcessor = new TestableDirectiveLineProcessor();

                directiveLineProcessor.Matches("#NotATest").ShouldBeFalse();
            }
 public void ShouldReturnTrueWhenLineMatchesDirectiveStringWithoutAnArgument()
 {
     var directiveLineProcessor = new TestableDirectiveLineProcessor();
     directiveLineProcessor.Matches("#Test").ShouldBeTrue();
 }
            public void ShouldReturnTrueWhenLineMatchesDirectiveStringWithoutAnArgument()
            {
                var directiveLineProcessor = new TestableDirectiveLineProcessor();

                directiveLineProcessor.Matches("#Test").ShouldBeTrue();
            }