public void SetHistoryQuotationTest()
 {
     ExchangeSystemSetting setting = new ExchangeSystemSetting();
     XmlSerializer serializer = new XmlSerializer(typeof(ManagerSettings));
     ManagerSettings settings = (ManagerSettings)serializer.Deserialize(new FileStream(@"D:\Teams\iExchangeCollection\iExchange3 Team\Manager\Manager.UnitTest\bin\Debug\Configuration\Manager.config", FileMode.Open));
     setting = settings.ExchangeSystems[0]; // 初始化为适当的值
     QuotationServer target = new QuotationServer(setting); // 初始化为适当的值
     Token token = new Token(Guid.Empty, UserType.System, AppType.RiskMonitor); // 初始化为适当的值
     DateTime tradeDay = new DateTime(); // 初始化为适当的值
     string quotation = "<Local><Quotation InstrumentID='1DFB99D4-2B76-48B0-9109-0A67265F5B9F' Timestamp='2013-02-01 04:00:00.000' Origin='1.3559' Status='Modified'/></Local>"; // 初始化为适当的值
     bool needApplyAutoAdjustPoints = false; // 初始化为适当的值
     iExchange.Common.OriginQuotation[] originQs = null; // 初始化为适当的值
        // iExchange.Common.OriginQuotation[] originQsExpected = null; // 初始化为适当的值
     iExchange.Common.OverridedQuotation[] overridedQs = null; // 初始化为适当的值
        // iExchange.Common.OverridedQuotation[] overridedQsExpected = null; // 初始化为适当的值
     bool needBroadcastQuotation = false; // 初始化为适当的值
        // bool needBroadcastQuotationExpected = true; // 初始化为适当的值
     bool expected = true; // 初始化为适当的值
     bool actual;
     actual = target.SetHistoryQuotation(token, tradeDay, quotation, needApplyAutoAdjustPoints, out originQs, out overridedQs, out needBroadcastQuotation);
     //Assert.AreEqual(originQsExpected, originQs);
     //Assert.AreEqual(overridedQsExpected, overridedQs);
     //Assert.AreEqual(needBroadcastQuotationExpected, needBroadcastQuotation);
     Assert.AreEqual(expected, actual);
 }