9b8ae02382
Add integration tests for deterministic build support
15 lines
316 B
C#
15 lines
316 B
C#
using Xunit;
|
|
|
|
namespace Coverlet.Integration.DeterministicBuild
|
|
{
|
|
public class TemplateTest
|
|
{
|
|
[Fact]
|
|
public void Answer()
|
|
{
|
|
DeepThought dt = new DeepThought();
|
|
Assert.Equal(42, dt.AnswerToTheUltimateQuestionOfLifeTheUniverseAndEverything());
|
|
}
|
|
}
|
|
}
|