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

GivenConfirmedUsersWhenGetNumberOfInactiveProfilesThenNotSupportedException() private method

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

            // act // assert
            Assert.Throws<NotSupportedException>(
                () => testClass.GetNumberOfInactiveProfiles(option, DateTime.MinValue));
        }