20 lines
461 B
C#
20 lines
461 B
C#
using Shouldly;
|
|
using Xunit;
|
|
|
|
namespace ZB.MOM.WW.OtOpcUa.Tests
|
|
{
|
|
/// <summary>
|
|
/// Placeholder unit test that keeps the unit test project wired into the solution.
|
|
/// </summary>
|
|
public class SampleTest
|
|
{
|
|
/// <summary>
|
|
/// Confirms that the unit test assembly is executing.
|
|
/// </summary>
|
|
[Fact]
|
|
public void Placeholder_ShouldPass()
|
|
{
|
|
true.ShouldBeTrue();
|
|
}
|
|
}
|
|
} |