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