Files
nt8-sdk/tests/NT8.Performance.Tests/PlaceholderTests.cs
Billy Valentine 92f3732b3d
Some checks failed
Build and Test / build (push) Has been cancelled
Phase 0 completion: NT8 SDK core framework with risk management and position sizing
2025-09-09 17:06:37 -04:00

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