public void SetUp()
 {
     theConstraint = new SubPathConstraint( @"/folder1/folder2"  ).RespectCase;
     expectedDescription = @"Path under ""/folder1/folder2""";
     stringRepresentation = @"<subpath ""/folder1/folder2"" respectcase>";
 }
Exemplo n.º 2
0
 public void SetUp()
 {
     theConstraint        = new SubPathConstraint(@"/folder1/folder2").RespectCase;
     expectedDescription  = @"Subpath of ""/folder1/folder2""";
     stringRepresentation = @"<subpath ""/folder1/folder2"" respectcase>";
 }
 public void SetUp()
 {
     theConstraint = new SubPathConstraint( @"C:\folder1\folder2" ).IgnoreCase;
     expectedDescription = @"Path under ""C:\folder1\folder2""";
     stringRepresentation = @"<subpath ""C:\folder1\folder2"" ignorecase>";
 }
Exemplo n.º 4
0
 public void SetUp()
 {
     theConstraint        = new SubPathConstraint(@"C:\folder1\folder2").IgnoreCase;
     expectedDescription  = @"Subpath of ""C:\folder1\folder2""";
     stringRepresentation = @"<subpath ""C:\folder1\folder2"" ignorecase>";
 }