public static bool testMethod() {
		        int intI = 1;
		        int intJ = 2;
		        int intK = 3;
		        MyTest mc = new MyTest();
		        if ((mc.MyMeth1(intI, intJ, intK) == 6) && (MyTest.MyMeth2(intI, intJ, intK) == 6)) {
			        return true;
		        }
		        else {
			        return false;
		        }
	        }