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

GivenConfirmedUsersWhenGetAllInactiveProfilesThenNotSupportedException() private method

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

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