BetterMembership.Tests.Web.BetterProfileProviderTests.GivenProfileProviderWhenGetAllProfilesThenThrowNotSupportedException C# (CSharp) 메소드

GivenProfileProviderWhenGetAllProfilesThenThrowNotSupportedException() 개인적인 메소드

private GivenProfileProviderWhenGetAllProfilesThenThrowNotSupportedException ( ProfileAuthenticationOption option ) : void
option ProfileAuthenticationOption
리턴 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));
        }
    }