public void GetCurrencyAsyncTest()
        {
            var client   = new HitRestApi();
            var currency = "BTC";

            var response = client.GetCurrencyAsync(currency).Result;

            ResponseBasicCheck(response);

            Assert.AreEqual(currency, response.Result.Id);
        }