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