53562c6460
Add integration test for all drivers mbuild/vstest/.net tool
15 lines
306 B
C#
15 lines
306 B
C#
using Xunit;
|
|
|
|
namespace Coverlet.Integration.Template
|
|
{
|
|
public class TemplateTest
|
|
{
|
|
[Fact]
|
|
public void Answer()
|
|
{
|
|
DeepThought dt = new DeepThought();
|
|
Assert.Equal(42, dt.AnswerToTheUltimateQuestionOfLifeTheUniverseAndEverything());
|
|
}
|
|
}
|
|
}
|