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

GivenConfirmedUsersWhenFindUsersbyUserNameThenThrowNotSupportedException() private method

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

            // act // assert
            int totalRecords1;
            Assert.Throws<NotSupportedException>(
                () => testClass.FindProfilesByUserName(option, "value", 0, 10, out totalRecords1));
        }