예제 #1
0
        public void TestParseContent()
        {
            var testFile    = TestAssembly.TestDataDir + @"\IexApiDataResponse.json";
            var testInput   = System.IO.File.ReadAllText(testFile);
            var testSubject = new IexApi();
            var testResult  = testSubject.ParseContent(testInput);

            Assert.IsNotNull(testResult);
            Assert.IsTrue(testResult.Any());
        }