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

GivenProfileProviderWhenGetAllProfilesThenThrowNotSupportedException() private method

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

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