16 lines
289 B
C#
Raw Normal View History

using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
2020-01-26 01:37:54 -05:00
namespace sample_csproj
{
[TestClass]
public class Program
2020-01-26 01:37:54 -05:00
{
[TestMethod]
public void TestMethod1()
2020-01-26 01:37:54 -05:00
{
Console.WriteLine("Hello, World!");
2020-01-26 01:37:54 -05:00
}
}
}