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

Can_run_test_service() private method

private Can_run_test_service ( ) : void
return void
		public void Can_run_test_service()
		{
			var request = new Test();
			var response = appHost.ExecuteService(request) as TestResponse;

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