public void LoggingTest() { //Arrange var controller = new AdminLoggingController(new LoggingBLL(new LoggingDALStub())); //Act var result = (ViewResult)controller.Logging(); //Assert Assert.AreEqual(result.ViewName, "Logging"); }