ResetPassword() public method

public ResetPassword ( string userName, string answer ) : string
userName string
answer string
return string
        public void GivenProviderWhenResetPasswordWithAnswerThenNotSupportedException()
        {
            // arrange
            var provider = new BetterMembershipProvider();

            // act // assert
            Assert.Throws<NotSupportedException>(() => provider.ResetPassword("username", "not null"));
        }