Example #1
0
            public static bool testMethod()
            {
                int intI = 1;
                int intJ = 2;
                int intK = 3;

                ConstructorsTestClass56_Sub mc = new ConstructorsTestClass56_Sub(intI, intJ, intK);

                if (mc.intTest == 6)
                {
                    return(true);
                }
                else
                {
                    return(false);
                }
            }
            public static bool testMethod()
            {

                int intI = 1;
                int intJ = 2;
                int intK = 3;

                ConstructorsTestClass56_Sub mc = new ConstructorsTestClass56_Sub(intI, intJ, intK);
                if (mc.intTest == 6)
                {
                    return true;
                }
                else
                {
                    return false;
                }
            }