MakeTestCase() public static method

public static MakeTestCase ( Type type, string methodName ) : NUnit.Framework.Internal.TestMethod
type System.Type
methodName string
return NUnit.Framework.Internal.TestMethod
Exemplo n.º 1
0
 public static void ChildNotRunnable(Type type, string name)
 {
     IsNotRunnable((Test)TestBuilder.MakeTestCase(type, name).Tests[0]);
 }
Exemplo n.º 2
0
 public static void IsNotRunnable(Type type, string name)
 {
     IsNotRunnable(TestBuilder.MakeTestCase(type, name));
 }