public void GetSpieltagTest()
        {
            // given
            string stage = "1";

            // when
            var result = _oddsScraper.GetOdds(Resources.EMTippspiel, stage);

            _output.WriteLine("{0}", result.Count);

            // then
            result.Should().NotBeNull().And.Subject.Should().HaveCount(36);
        }
Esempio n. 2
0
        public void GetSpieltagTest()
        {
            // given
            string spieltag = "26";

            // when
            var result = _oddsScraper.GetOdds(Resources.Spieltag26Html, spieltag);

            _output.WriteLine("{0}", result.Count);

            // then
            result.Should().NotBeNull().And.Subject.Should().HaveCount(9);
        }