ServiceStack.WebHost.Endpoints.Tests.IocServiceTests.Can_resolve_all_dependencies_Async C# (CSharp) Method

Can_resolve_all_dependencies_Async() private method

private Can_resolve_all_dependencies_Async ( ) : void
return void
        public void Can_resolve_all_dependencies_Async()
        {
            var client = CreateClient();
            try
            {
                var response = client.Get<IocResponse>("iocasync");
                var expected = new List<string> {
                    typeof(FunqDepCtor).Name,
                    typeof(AltDepCtor).Name,
                    typeof(FunqDepProperty).Name,
                    typeof(FunqDepDisposableProperty).Name,
                    typeof(AltDepProperty).Name,
                    typeof(AltDepDisposableProperty).Name,
                };

                //Console.WriteLine(response.Results.Dump());
                Assert.That(expected.EquivalentTo(response.Results));
            }
            catch (WebServiceException ex)
            {
                Assert.Fail(ex.ErrorMessage);
            }
        }