aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarcinzelent <zelent.marcin@protonmail.com>2017-11-20 14:36:20 +0100
committermarcinzelent <zelent.marcin@protonmail.com>2017-11-20 14:36:20 +0100
commitf6f830d066635c91763dd1ae6248c8c189e6fe7e (patch)
tree7cf4d3315bda5829046e029cf52d2e2d9a167380 /AirPollutionWebApi.Tests/Controllers/HomeControllerTest.cs
parent7ff8524f57d6f4641e4a3dbea6ff6dbe9e346deb (diff)
Added WebApi.
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"]);
+ }
+ }
+}