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