BetterMembership.Tests.Web.BetterProfileProviderTests.GivenConfirmedUsersWhenGetNumberOfInactiveProfilesThenNotSupportedException C# (CSharp) Метод

GivenConfirmedUsersWhenGetNumberOfInactiveProfilesThenNotSupportedException() приватный Метод

private GivenConfirmedUsersWhenGetNumberOfInactiveProfilesThenNotSupportedException ( ProfileAuthenticationOption option ) : void
option ProfileAuthenticationOption
Результат void
        public void GivenConfirmedUsersWhenGetNumberOfInactiveProfilesThenNotSupportedException(ProfileAuthenticationOption option)
        {
            // arrange
            var testClass = new BetterProfileProvider();

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