Files
Marco Rossignoli ac0e0fad2f Allow standalone coverlet usage for integration/end-to-end tests using .NET tool driver (#991)
Allow standalone coverlet usage for integration/end-to-end tests using .NET tool driver
2020-11-17 09:36:14 +01:00

16 lines
341 B
C#

using System;
using Coverlet.Integration.Template;
namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
DeepThought dt = new DeepThought();
dt.AnswerToTheUltimateQuestionOfLifeTheUniverseAndEverything();
Console.WriteLine("Hello World!");
}
}
}