You've already forked setup-dotnet
mirror of
https://github.com/actions/setup-dotnet.git
synced 2025-11-08 19:00:55 +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);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|