diff --git a/LeafWeb.sln b/LeafWeb.sln
index 84faf01..08eefaa 100644
--- a/LeafWeb.sln
+++ b/LeafWeb.sln
@@ -3,6 +3,8 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Web", "Web\Web.csproj", "{0809033D-DBB9-41AE-8811-9A9CFDFD8966}"
EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Web.Tests", "Web.Tests\Web.Tests.csproj", "{0DBE7CB9-71B3-46BA-8045-0F1E36C1C8F7}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -13,6 +15,10 @@ Global
{0809033D-DBB9-41AE-8811-9A9CFDFD8966}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0809033D-DBB9-41AE-8811-9A9CFDFD8966}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0809033D-DBB9-41AE-8811-9A9CFDFD8966}.Release|Any CPU.Build.0 = Release|Any CPU
+ {0DBE7CB9-71B3-46BA-8045-0F1E36C1C8F7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {0DBE7CB9-71B3-46BA-8045-0F1E36C1C8F7}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {0DBE7CB9-71B3-46BA-8045-0F1E36C1C8F7}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {0DBE7CB9-71B3-46BA-8045-0F1E36C1C8F7}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
diff --git a/Web.Tests/Properties/AssemblyInfo.cs b/Web.Tests/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..ed6cda2
--- /dev/null
+++ b/Web.Tests/Properties/AssemblyInfo.cs
@@ -0,0 +1,36 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("Web.Tests")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("Web.Tests")]
+[assembly: AssemblyCopyright("Copyright © 2015")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// to COM components. If you need to access a type in this assembly from
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: Guid("128b7356-7f78-4b5d-8b52-990a90cc0530")]
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+// You can specify all the values or you can default the Build and Revision Numbers
+// by using the '*' as shown below:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/Web.Tests/Web.Tests.csproj b/Web.Tests/Web.Tests.csproj
new file mode 100644
index 0000000..667f31a
--- /dev/null
+++ b/Web.Tests/Web.Tests.csproj
@@ -0,0 +1,59 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {0DBE7CB9-71B3-46BA-8045-0F1E36C1C8F7}
+ Library
+ Properties
+ Web.Tests
+ Web.Tests
+ v4.5
+ 512
+
+
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+
+
+
+ ..\packages\NUnit.3.0.0\lib\net45\nunit.framework.dll
+ True
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Web.Tests/packages.config b/Web.Tests/packages.config
new file mode 100644
index 0000000..653bfb7
--- /dev/null
+++ b/Web.Tests/packages.config
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file