Update e2e tests

This commit is contained in:
IvanZosimov
2023-04-13 17:28:59 +02:00
parent 920b830bd1
commit b72f430d36
6 changed files with 123 additions and 113 deletions

View File

@@ -0,0 +1,14 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace test_csproj
{
[TestClass]
public class Test
{
[TestMethod]
public void TestMethod()
{
Assert.AreEqual((1 + 1), 2);
}
}
}