aboutsummaryrefslogtreecommitdiff
path: root/API_Tests/UnitTest1.cs
blob: 89f28c2237752a14a75dbf970274bbf3031f78b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Models.Classes;

namespace API_Tests
{
	[TestClass]
	public class UnitTest1
	{
		[TestMethod]
		public void TestMethod1()
		{
			Test test = new Test();
			test.TestMe();
		}
	}
}