예제 #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;
 }