public void SetUp()
 {
     _pathPatternMatcher = new PathPatternMatcher();
     _exactCollection    = new List <string> {
         "foo", "bar"
     };
     _wildcardCollection = new List <string> {
         "*foo", "bar*"
     };
 }
 public void Setup()
 {
     patternMatcher = new PathPatternMatcher();
     behavior       = new SolutionClonerBehavior(patternMatcher, new[] { "**obj" }, new[] { "*.txt" }, new[] { "*.exe" });
 }