Add unit test for AddToWatchList
Some checks failed
Build .NET Project / build (push) Has been cancelled

This commit is contained in:
2026-03-10 15:50:22 -04:00
parent acee222089
commit f3734184b4

View File

@@ -47,6 +47,17 @@ public class MarketDataUnitTestClass
return true;
}
/// <summary>
/// AddToWatchList
/// </summary>
[TestMethod]
public void AddToWatchList()
{
List<String> symbols = new List<String>(new string[]{"SPY","^VIX"});
bool result = WatchListDA.AddToWatchList(symbols);
Assert.IsTrue(result);
}
/// <summary>
/// </summary>
[TestMethod]