mirror of
https://github.com/actions/setup-dotnet.git
synced 2024-11-23 03:51:07 +07:00
19 lines
411 B
C#
19 lines
411 B
C#
|
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);
|
||
|
}
|
||
|
}
|
||
|
}
|