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)); }
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(); }