setup-dotnet/__tests__/e2e-test-csproj/Test.cs

19 lines
411 B
C#
Raw Normal View History

2023-04-13 15:28:59 +00:00
using Microsoft.VisualStudio.TestTools.UnitTesting;
2023-04-19 11:40:44 +00:00
using System;
2023-04-13 15:28:59 +00:00
namespace test_csproj
{
[TestClass]
public class Test
{
[TestMethod]
public void TestMethod()
2023-04-19 11:40:44 +00:00
{
Console.WriteLine("TestMethod");
int calculatedResult = 1000 / 25;
int expectedResult = 40;
Assert.AreEqual(calculatedResult, expectedResult);
2023-04-13 15:28:59 +00:00
}
}
}