public void ShouldNotBeConsidiredEqual(string fileName, Type typeToMatch)
 {
     IFileMatcher matcher = new IgnoreSpaceAndUnderScoreMatcher(typeToMatch);
     Assert.IsFalse(matcher.IsMatch(fileName));
 }
        public void ShouldNotBeConsidiredEqual(string fileName, Type typeToMatch)
        {
            IFileMatcher matcher = new IgnoreSpaceAndUnderScoreMatcher(typeToMatch);

            Assert.IsFalse(matcher.IsMatch(fileName));
        }