aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'AirPollutionWebApi.Tests/Controllers/HomeControllerTest.cs')
-rw-r--r--AirPollutionWebApi.Tests/Controllers/HomeControllerTest.cs35
1 files changed, 35 insertions, 0 deletions
diff --git a/AirPollutionWebApi.Tests/Controllers/HomeControllerTest.cs b/AirPollutionWebApi.Tests/Controllers/HomeControllerTest.cs
new file mode 100644
index 0000000..fdae606
--- /dev/null
+++ b/AirPollutionWebApi.Tests/Controllers/HomeControllerTest.cs
@@ -0,0 +1,35 @@
+using NUnit.Framework;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Web.Mvc;
+using AirPollutionWebApi;
+using AirPollutionWebApi.Controllers;
+
+namespace AirPollutionWebApi.Tests.Controllers
+{
+ [TestFixture]
+ public class HomeControllerTest
+ {
+ [Test]
+ public void Index()
+ {
+ // Arrange
+ var controller = new HomeController();
+
+ // Act
+ var result = (ViewResult)controller.Index();
+
+ var mvcName = typeof(Controller).Assembly.GetName();
+ var isMono = Type.GetType("Mono.Runtime") != null;
+
+ var expectedVersion = mvcName.Version.Major + "." + mvcName.Version.Minor;
+ var expectedRuntime = isMono ? "Mono" : ".NET";
+
+ // Assert
+ Assert.AreEqual(expectedVersion, result.ViewData["Version"]);
+ Assert.AreEqual(expectedRuntime, result.ViewData["Runtime"]);
+ }
+ }
+}