public async Task Should_get_currencies()
        {
            var response = await _portfolioService.GetCurrencies(CancellationToken.None);

            ValidateRestResponse(response);
            Assert.NotNull(response.Currencies);
            Assert.NotEmpty(response.Currencies);
        }