public void IsValidTest()
        {
            var target = new CodeVerificationDataProvider();

            bool expected = true;
            bool actual;
            actual = target.IsValid(accountId, value, type);
            Assert.AreEqual(expected, actual);
        }