Helper methods for testing the boo libraries.
コード例 #1
0
ファイル: BooTestCaseUtil.cs プロジェクト: yantrabuddhi/boo
 public static string LoadSample(string fname)
 {
     using (StreamReader sr = File.OpenText(BooTestCaseUtil.GetTestCasePath(fname)))
     {
         return(sr.ReadToEnd());
     }
 }