//Checks phone no for incorrect data
        public void StudentFormPhoneNoErroneusdate()
        {
            //create instance to test
            StudentForm stForm = new StudentForm(ref mainform, true);
            //define a test input and output value
            bool expectedResult = false;

            stForm.SetPhoneNoAdded("63927086202");
            //run the method under test
            bool actualResult = stForm.ValidateFields();

            //checks results
            Assert.AreEqual(expectedResult, actualResult);
        }