コード例 #1
0
ファイル: Program.cs プロジェクト: Nanonid/Espresso
        public TestCaseMethod AddTestMethod(System.Reflection.MethodInfo met)
        {
            TestCaseMethod testcaseMethod = new TestCaseMethod(this, met);

            testMethods.Add(testcaseMethod);
            return(testcaseMethod);
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: killf/V8Net
 public TestCaseMethod AddTestMethod(System.Reflection.MethodInfo met)
 {
     TestCaseMethod testcaseMethod = new TestCaseMethod(this, met);
     testMethods.Add(testcaseMethod);
     return testcaseMethod;
 }