ServiceStack.WebHost.Endpoints.Tests.ServiceStackHostTests.Can_run_nested_service C# (CSharp) Method

Can_run_nested_service() private method

private Can_run_nested_service ( ) : void
return void
		public void Can_run_nested_service()
		{
			var request = new Nested();
			var response = appHost.ExecuteService(request) as NestedResponse;

			Assert.That(response, Is.Not.Null);
		}