Exemplo n.º 1
0
        public async Task Should_return_prices_for_bth_eth_and_lit_coins()
        {
            // arrange

            // act
            await _controller.Get();

            // assert
            _coinRepository.Verify(r => r.GetPricesAsync());
        }