public MFTestResults Impref_struct_inter_Test()
 {
     Log.Comment(" Tests that you can convert from a struct to an interface that it implements. ");
     if (ImprefTestClass_struct_inter.testMethod())
     {
         return(MFTestResults.Pass);
     }
     return(MFTestResults.Fail);
 }
 public void Impref_struct_inter_Test()
 {
     OutputHelper.WriteLine(" Tests that you can convert from a struct to an interface that it implements. ");
     Assert.True(ImprefTestClass_struct_inter.testMethod());
 }