Exemplo n.º 1
0
 public static bool TryLoadFromFile(string path, out IInterestingElement project)
 {
     Project element;
     var result = TryLoadFromFile(path, out element);
     project = element;
     return result;
 }
Exemplo n.º 2
0
        public static bool TryLoadFromFile(string path, out IInterestingElement project)
        {
            Project element;
            var     result = TryLoadFromFile(path, out element);

            project = element;
            return(result);
        }
Exemplo n.º 3
0
 public static bool TryCreate(string path, out IInterestingElement result)
 {
     result = new RobotTestSuite(path);
     return !((RobotTestSuite)result).IsExcluded;
 }
Exemplo n.º 4
0
 public static bool TryCreate(string path, out IInterestingElement result)
 {
     result = new RobotTestSuite(path);
     return(!((RobotTestSuite)result).IsExcluded);
 }