public MFTestResults BaseClass3_Test()
 {
     Log.Comment("Tests a function declaration in an implementing class still works after child is cast as");
     Log.Comment("each of two implemented interfaces");
     if (BaseClassTestClass3.testMethod())
     {
         return(MFTestResults.Pass);
     }
     return(MFTestResults.Fail);
 }
 public void BaseClass3_Test()
 {
     OutputHelper.WriteLine("Tests a function declaration in an implementing class still works after child is cast as");
     OutputHelper.WriteLine("each of two implemented interfaces");
     Assert.True(BaseClassTestClass3.testMethod());
 }