Ejemplo n.º 1
0
        public void GetMarketSummaries_ShouldNotThrowException()
        {
            var         bittrex = new Bittrex();
            Func <Task> action  = async() => { var _ = await bittrex.GetMarketSummaries(); };

            action.ShouldNotThrow();
        }
Ejemplo n.º 2
0
        public async void GetMarketSummaries()
        {
            var res = await bittrex.GetMarketSummaries();

            Assert.NotEmpty(res.Result);
        }