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

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

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

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