15 lines
336 B
C#
15 lines
336 B
C#
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
|
|
namespace NT8.Integration.Tests
|
|
{
|
|
[TestClass]
|
|
public class PlaceholderIntegrationTests
|
|
{
|
|
[TestMethod]
|
|
public void Placeholder_ShouldPass()
|
|
{
|
|
// Placeholder test to make project compile
|
|
Assert.IsTrue(true);
|
|
}
|
|
}
|
|
} |