ServiceStack.WebHost.Endpoints.Tests.IocServiceTests.Does_AutoWire_ActionLevel_RequestFilters_Async C# (CSharp) 메소드

Does_AutoWire_ActionLevel_RequestFilters_Async() 개인적인 메소드

private Does_AutoWire_ActionLevel_RequestFilters_Async ( ) : void
리턴 void
        public void Does_AutoWire_ActionLevel_RequestFilters_Async()
        {
            try
            {
                var client = CreateClient();
                var response = client.Get(new ActionAttrAsync());

                var expected = new List<string> {
                    typeof(FunqDepProperty).Name,
                    typeof(FunqDepDisposableProperty).Name,
                    typeof(AltDepProperty).Name,
                    typeof(AltDepDisposableProperty).Name,
                };

                Assert.That(expected.EquivalentTo(response.Results));

            }
            catch (Exception ex)
            {
                ex.Message.Print();
                throw;
            }
        }