Files
nt8-sdk/tests/_archive/placeholders/Integration_PlaceholderTests.cs

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);
}
}
}