public MFTestResults Fields54_testMethod()
 {
     Log.Comment("Testing bools assigned with function calls");
     if (FieldsTestClass54.testMethod())
     {
         return(MFTestResults.Pass);
     }
     return(MFTestResults.Fail);
 }
            public static bool testMethod()
            {
                FieldsTestClass54 mc = new FieldsTestClass54();

                if ((b1 == true) && (b2 == false) && (mc.b3 == true) && (mc.b4 == false))
                {
                    return(true);
                }
                else
                {
                    return(false);
                }
            }
 public void Fields54_testMethod()
 {
     OutputHelper.WriteLine("Testing bools assigned with function calls");
     Assert.True(FieldsTestClass54.testMethod());
 }
            public static bool testMethod()
            {

                FieldsTestClass54 mc = new FieldsTestClass54();

                if ((b1 == true) && (b2 == false) && (mc.b3 == true) && (mc.b4 == false))
                {
                    return true;
                }
                else
                {
                    return false;
                }
            }