Add unit test for AddToWatchList
Some checks failed
Build .NET Project / build (push) Has been cancelled
Some checks failed
Build .NET Project / build (push) Has been cancelled
This commit is contained in:
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user