Example #1
0
        private static void GenerateYahooXml()
        {
            var m = new YahooMaster("Yahoo", "YahooOutput.xml");

            m.Calculate(Utility.CurrentSeason(), Utility.CurrentWeek());
            m.Dump2Xml();
        }
        public void TestYahooMasterCalculating()
        {
            var m = new YahooMaster("Yahoo", "YahooOutput.xml");

            m.Calculate("2013", "06");
            m.Dump2Xml();
            Assert.IsTrue(File.Exists(m.Filename));
        }
Example #3
0
        public void TestGenYahooAllPositionsCurrentWeek()
        {
            var m = new YahooMaster("Yahoo", "YahooOutput.xml");

            m.Calculate("2013", Utility.CurrentWeek());
            m.Dump2Xml();
            Assert.IsTrue(File.Exists(m.Filename));
            TestAllPositionsBeastModeCurrentWeek();
            TestAllPositionsYahooCurrentWeek();
            TestAllPositionsRantsCurrentWeek();
        }