aboutsummaryrefslogtreecommitdiff
path: root/Web_Tests/UnitTest1.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Web_Tests/UnitTest1.cs')
-rw-r--r--Web_Tests/UnitTest1.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/Web_Tests/UnitTest1.cs b/Web_Tests/UnitTest1.cs
new file mode 100644
index 0000000..1022d11
--- /dev/null
+++ b/Web_Tests/UnitTest1.cs
@@ -0,0 +1,16 @@
+using Microsoft.VisualStudio.TestTools.UnitTesting;
+using Models.Classes;
+
+namespace Web_Tests
+{
+ [TestClass]
+ public class UnitTest1
+ {
+ [TestMethod]
+ public void TestMethod1()
+ {
+ Test test = new Test();
+ test.TestMe();
+ }
+ }
+}