public async void Test_Get_Crypto_Success_Result()
        {
            var result = await _controller.List(new CancellationToken());

            Assert.IsType <ActionResult <List <CryptoModel> > >(result);
        }