Files
coverlet/Documentation/Examples/MSBuild/MergeWith/XUnitTestProject2/UnitTest2.cs
T
Marco Rossignoli 868e663db7 Add /p:MergeWith example on guide (#540)
add `/p:MergeWith` example.
2019-09-11 11:49:22 +02:00

15 lines
211 B
C#

using System;
using Xunit;
namespace XUnitTestProject2
{
public class UnitTest2
{
[Fact]
public void Test2()
{
new ClassLibrary2.Class2().Method();
}
}
}