Skip to content

Instantly share code, notes, and snippets.

@derans
Created May 10, 2012 02:52
Show Gist options
  • Save derans/2650687 to your computer and use it in GitHub Desktop.
Save derans/2650687 to your computer and use it in GitHub Desktop.
Sample Test Base
public class TestBase
{
public TestBase()
{
ObjectFactory.Initialize(x => x.Configure(
pluginGraph => pluginGraph.Scan(scanner =>
{
scanner.AssemblyContainingType<HomeController>();
scanner.WithDefaultConventions();
})));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment