public void ParseGroupAndPath(string pathWithNamespace, string ns, string path)
        {
            var value = new PathWithNamespace(pathWithNamespace);

            Assert.AreEqual(ns, value.Namespace);
            Assert.AreEqual(path, value.Name);
        }
示例#2
0
 public void AppendParameter(PathWithNamespace value)
 {
     AppendParameter(value.FullPath);
 }