Ejemplo n.º 1
0
        //-------------------------------------------------------------------------
        public virtual void test_minus_CurrencyAmount()
        {
            CurrencyAmount ccyAmount = CurrencyAmount.of(CCY1, AMT2);
            CurrencyAmount test      = CCY_AMOUNT.minus(ccyAmount);

            assertEquals(test, CurrencyAmount.of(CCY1, AMT1 - AMT2));
        }