public void can_resolve_rooted_different_case_file() { var mapping = new FileMappings() { Mappings = new List<FileMapping> { new FileMapping("abc.xml", "qwe.xml") } }; mapping.LayoutFor(@"root/ABC.xml").Should().Be("qwe.xml"); }
public void can_resolve_correct_case_file() { var mapping = new FileMappings() { Mappings = new List<FileMapping> { new FileMapping("abc.xml", "qwe.xml") } }; mapping.LayoutFor("abc.xml").Should().Be("qwe.xml"); }