public void Has_Not_Special_Char_Return_False()
        {
            Business.ValidateSpecialChar passwordValidate = new Business.ValidateSpecialChar();

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

            Assert.False(result);
        }
        public void Has_Special_Char_Return_True()
        {
            Business.ValidateSpecialChar passwordValidate = new Business.ValidateSpecialChar();

            bool result = passwordValidate.HasSpecialChar("Testt@");

            Assert.True(result);
        }