ac0e0fad2f
Allow standalone coverlet usage for integration/end-to-end tests using .NET tool driver
16 lines
341 B
C#
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!");
|
|
}
|
|
}
|
|
} |