21 lines
498 B
C#
21 lines
498 B
C#
using Shouldly;
|
|
using Xunit;
|
|
|
|
namespace ZB.MOM.WW.LmxOpcUa.IntegrationTests
|
|
{
|
|
/// <summary>
|
|
/// Placeholder integration test that keeps the integration test project wired into the solution.
|
|
/// </summary>
|
|
public class SampleIntegrationTest
|
|
{
|
|
/// <summary>
|
|
/// Confirms that the integration test assembly is executing.
|
|
/// </summary>
|
|
[Fact]
|
|
public void Placeholder_ShouldPass()
|
|
{
|
|
true.ShouldBeTrue();
|
|
}
|
|
}
|
|
}
|