Code cleanup.
Some checks failed
Build .NET Project / build (push) Has been cancelled

This commit is contained in:
2026-03-24 13:36:11 -04:00
parent 3bf89b97e8
commit 70f9af5934
3 changed files with 23 additions and 0 deletions

View File

@@ -447,6 +447,18 @@ public class MarketDataUnitTestClass
Assert.IsTrue(null != companyProfile);
}
[TestMethod]
public void GetCompanyProfileMorningStar()
{
String symbol = "AAPL";
String nasdaq = "xnas";
String nyse = "xnys";
CompanyProfile companyProfile = MarketDataHelper.GetCompanyProfileMorningStar(symbol, nasdaq);
if(null==companyProfile)companyProfile = MarketDataHelper.GetCompanyProfileMorningStar(symbol, nyse);
Assert.IsTrue(null != companyProfile);
}
// Test all feeds
[TestMethod]
public void HeadlinesRetrieval()