Beispiel #1
0
        public void Given_Currency_When_GetLatestAsyncInvoked_Then_resultWithExchangeRatesCollectionRetrived()
        {
            var currency = "USD";

            var result = _serviceUnderTest.GetLatestAsync(currency).Result;

            Assert.IsNotNull(result);
            Assert.IsTrue(result.Any());
        }