You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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);
|
|
}
|
|
}
|
|
}
|