Example #1
0
        public string GetPrefixNamespaceAndClass()
        {
            var pieces          = FullyQualifiedName.Split('.').ToList();
            var namespacePieces = pieces.Take(pieces.Count - 1);

            return(String.Join(".", namespacePieces));
        }
Example #2
0
 public override string GetLocString()
 {
     return(string.Format(@"cs+class://{0}", string.Join("/", FullyQualifiedName.Split('.'))));
 }
Example #3
0
 internal string GetTestsuiteName_CommandLineGenerator()
 {
     return(FullyQualifiedName.Split('.')[0]);
 }