Update e2e tests and e2e test infrastructure (#414)

This commit is contained in:
Ivan
2023-04-20 14:42:27 +02:00
committed by GitHub
parent 920b830bd1
commit fc8786b149
10 changed files with 167 additions and 170 deletions

View File

@ -0,0 +1,18 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
namespace test_csproj
{
[TestClass]
public class Test
{
[TestMethod]
public void TestMethod()
{
Console.WriteLine("TestMethod");
int calculatedResult = 1000 / 25;
int expectedResult = 40;
Assert.AreEqual(calculatedResult, expectedResult);
}
}
}