public void Has_Incorrect_Length_Return_False()
        {
            Business.ValidateLength passwordValidate = new Business.ValidateLength();

            bool result = passwordValidate.HasCorrectLength("test");

            Assert.False(result);
        }
        public void Has_Correct_Length_Return_True()
        {
            Business.ValidateLength passwordValidate = new Business.ValidateLength();

            bool result = passwordValidate.HasCorrectLength("t3st12345");

            Assert.True(result);
        }