2e2b578fcc
Add deterministic build tests sample
15 lines
211 B
C#
15 lines
211 B
C#
using System;
|
|
using Xunit;
|
|
|
|
namespace XUnitTestProject1
|
|
{
|
|
public class UnitTest1
|
|
{
|
|
[Fact]
|
|
public void Test1()
|
|
{
|
|
new ClassLibrary1.Class1().Method();
|
|
}
|
|
}
|
|
}
|