public void Match(string testSample, StringComparison comparerType)
 {
     var pathSegment = new CurrentPathSegment();
     Assert.False(pathSegment.Match(testSample, comparerType));
 }
 public void Match(string testSample)
 {
     var pathSegment = new CurrentPathSegment();
     Assert.False(pathSegment.Match(testSample));
 }