aboutsummaryrefslogtreecommitdiff
path: root/Web_Tests/UnitTest1.cs
blob: 1022d11ba19dc7c7daed2d431dbebd66908632ed (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 Web_Tests
{
	[TestClass]
	public class UnitTest1
	{
		[TestMethod]
		public void TestMethod1()
		{
			Test test = new Test();
			test.TestMe();
		}
	}
}