public void TestStudentPass()
        {
            //Arrange
            StudentRegister check = new StudentRegister();
            // Act
            bool x = check.StudentPass("AbcdefghiI20158");

            //Assert
            Assert.IsTrue(x);
        }