public void test_find_currency()
        {
            //Given
            var             twd        = Currency.Create("TWD", 2);
            ICurrencyLookup collection = new CurrencyCollection();

            collection.Add(twd);
            //When
            var find = collection.Find(twd.CurrencyCode);

            //Then
            Assert.Equal(twd, find);
        }