public void Allocaton_GetCurrencyPairs()
        {
            Allocation alloc = AllocationsTools.GetAllocation();

            TestTools <CurrencyPair> .ListComparisonTest(alloc.GetCurrencyPairs(Currency.EUR),
                                                         new List <CurrencyPair> {
                new CurrencyPair(Currency.USD, Currency.EUR),
                new CurrencyPair(Currency.XBT, Currency.EUR)
            });
        }