Esempio n. 1
0
        public void GetSelectAccountInstruments()
        {
            GetAccountInstrumentsResponse response = _api.GetAccountInstruments(this.AccountId, new List <InstrumentName>()
            {
                "EUR_USD"
            });

            Assert.IsTrue(response.Instruments.Count == 1);
        }
Esempio n. 2
0
        public void GetAccountInstruments()
        {
            GetAccountInstrumentsResponse response = _api.GetAccountInstruments(this.AccountId);

            Assert.IsTrue(response.Instruments.Count > 0);
        }