public void GetCurrenciesAsyncTest()
        {
            var client = new HitRestApi();

            var response = client.GetCurrenciesAsync().Result;

            ResponseBasicCheck(response);

            Assert.AreNotEqual(0, response.Result.Length);
        }