Testing WebApi OWIN app - HelloWorld
Microsoft OWIN team has introduced an in-memory web server for just testing.
Sample HelloWorld code in github
https://github.com/syuraj/WebApi_Owin_HelloWorld
Some Nuget packages included
Microsoft.AspNet.WebApi.Owin : OWIN for WebApi (decouples web app and web server; web server can be IIS, console application, windows service, etc)
Microsoft.Owin.Host.SystemWeb : For hosting OWIN in IIS
Microsoft.Owin.Testing: For in-memory OWIN pipeline that dispatches requests using HttpClient









