BooCompiler.Tests.BooTestCaseUtil.LoadSample C# (CSharp) Method

LoadSample() public static method

public static LoadSample ( string fname ) : string
fname string
return string
        public static string LoadSample(string fname)
        {
            using (StreamReader sr = File.OpenText(BooTestCaseUtil.GetTestCasePath(fname)))
            {
                return sr.ReadToEnd();
            }
        }