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

15 lines
336 B
C#

using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace NT8.Performance.Tests
{
[TestClass]
public class PlaceholderPerformanceTests
{
[TestMethod]
public void Placeholder_ShouldPass()
{
// Placeholder test to make project compile
Assert.IsTrue(true);
}
}
}