Skip to content

Instantly share code, notes, and snippets.

View chester89's full-sized avatar

Gleb Chermennov chester89

View GitHub Profile
@jmarnold
jmarnold / IntegrationTestExample.cs
Created February 2, 2013 15:48
Sample integration testing
[TestFixture]
public class IntegrationTestExample
{
// You'll want the FubuMVC.Katana package for this
private EmbeddedFubuMvcServer theServer;
[SetUp]
public void SetUp()
{
theServer = new MyApplication().RunEmbedded();