BetterMembership.Tests.Web.BetterProfileProviderTests.GivenConfirmedUsersWhenFindInactiveProfilesByUserNameThenNotSupportedException C# (CSharp) Method

GivenConfirmedUsersWhenFindInactiveProfilesByUserNameThenNotSupportedException() private method

private GivenConfirmedUsersWhenFindInactiveProfilesByUserNameThenNotSupportedException ( ProfileAuthenticationOption option ) : void
option ProfileAuthenticationOption
return void
        public void GivenConfirmedUsersWhenFindInactiveProfilesByUserNameThenNotSupportedException(ProfileAuthenticationOption option)
        {
            // arrange
            var testClass = new BetterProfileProvider();

            // act // assert
            int totalRecords;
            Assert.Throws<NotSupportedException>(
                () =>
                testClass.FindInactiveProfilesByUserName(
                    option, "value", DateTime.MinValue, 0, 10, out totalRecords));
        }