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

GivenConfirmedUsersWhenDeleteInactiveProfilesThenNotSupportedException() private method

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

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