Beispiel #1
0
 public void HasMethodOneParameterFail()
 {
     ReflectionAssert.HasMethod(typeof(FailClass), "Method", typeof(string));
 }
Beispiel #2
0
 public void HasMethodOneParameter()
 {
     ReflectionAssert.HasMethod(typeof(SuccessClass), "Method", typeof(string));
 }
Beispiel #3
0
 public void HasMethodFail()
 {
     ReflectionAssert.HasMethod(typeof(FailClass), "Method");
 }
Beispiel #4
0
 public void HasMethod()
 {
     ReflectionAssert.HasMethod(typeof(SuccessClass), "Method");
 }