This is a short guide how to run Specflow features which use Selenium for interaction with a web site. In our building environment these tests are running in Jenkins. Implementing this you’ll
How To
How to test WebAPI with In-Memory HostingHow to test WebAPI with In-Memory Hosting
In most cases you want to have integration tests for your WebAPI, but don’t deploy it on IIS. There is an option which allows to skip IIS pipeline and work
How to extract domain from URLHow to extract domain from URL
You want to extract a domain from URL. The list of URLs to support might be as below. For this list you expect the domain sub.domain.com : sub.domain.com/folder?p1=v1 www.sub.domain.com/folder?p1=v1 http://sub.domain.com/folder?p1=v1 https://sub.domain.com/folder?p1=v1 https://www.sub.domain.com/folder?p1=v1
How To: Inject custom HTTP headers with FiddlerHow To: Inject custom HTTP headers with Fiddler
When you’re testing a web service or web site with authentication credentials posted via HTTP headers, you might want a way to inject testing credentials without login in. Fiddler could help
How To: Refresh POCO entity from DbContextHow To: Refresh POCO entity from DbContext
If you notice that the context returns the same entity even if it is already changed one line before, you probably what the following ObjectContext context = ((IObjectContextAdapter)this.Context).ObjectContext; context.Refresh(RefreshMode.StoreWins, entity); You can use it right after obtaining
How To: Integration of WCF with AutofacHow To: Integration of WCF with Autofac
If you’d like to hide WCF implementation class behind an interface to simplify future changes you should deal with some IoC. I use Autofac and have several times struggled upon

How To: Specify assemblies in TeamCity for MSTest build stepHow To: Specify assemblies in TeamCity for MSTest build step
The approach to specify DLLs in MSTest build step in TeamCity with a string pattern to be easily adopted for specific project.