using NUnit.Framework; using Website.Controllers; namespace UnitTests.Controllers { [TestFixture] public class DemosControllerTests : ContentDrivenControllerTester { [Test] public void Index() { new DemosController(null).Index().AssertViewName("Index"); } } }