mirror of
				https://github.com/actions/setup-dotnet.git
				synced 2025-11-04 09:33:45 +00: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);
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |