GetTestCasePath() публичный статический Метод

public static GetTestCasePath ( string sample ) : string
sample string
Результат string
Пример #1
0
 public static string LoadSample(string fname)
 {
     using (StreamReader sr = File.OpenText(BooTestCaseUtil.GetTestCasePath(fname)))
     {
         return(sr.ReadToEnd());
     }
 }