Search in sources :

Example 11 with CurrencyUnit

use of javax.money.CurrencyUnit in project jsr354-ri by JavaMoney.

the class MonetaryAmountDecimalFormatBuilderTest method shouldCreateSettingCurrencyUnit.

@Test
public void shouldCreateSettingCurrencyUnit() {
    CurrencyUnit currencyUnit = Monetary.getCurrency("BRL");
    MonetaryAmountDecimalFormat format = (MonetaryAmountDecimalFormat) MonetaryAmountDecimalFormatBuilder.newInstance().withProducer(new FastMoneyProducer()).withCurrencyUnit(currencyUnit).build();
    assertEquals(format.getCurrencyUnit(), currencyUnit);
    assertEquals(format.getProducer().getClass(), FastMoneyProducer.class);
    assertEquals(format.getDecimalFormat().getCurrency().getCurrencyCode(), format.getCurrencyUnit().getCurrencyCode());
}
Also used : CurrencyUnit(javax.money.CurrencyUnit) FastMoneyProducer(org.javamoney.moneta.function.FastMoneyProducer) Test(org.testng.annotations.Test)

Example 12 with CurrencyUnit

use of javax.money.CurrencyUnit in project jsr354-ri by JavaMoney.

the class MonetaryAmountSymbolsTest method shouldReturnCurrencyFromLocale.

@Test
public void shouldReturnCurrencyFromLocale() {
    MonetaryAmountSymbols symbols = new MonetaryAmountSymbols(Locale.US);
    CurrencyUnit currency = Monetary.getCurrency(Locale.US);
    assertEquals(symbols.getCurrency(), currency);
}
Also used : CurrencyUnit(javax.money.CurrencyUnit) Test(org.testng.annotations.Test)

Example 13 with CurrencyUnit

use of javax.money.CurrencyUnit in project jsr354-ri by JavaMoney.

the class MonetaryAmountSymbolsTest method shouldReturnDefaultCurrency.

@Test
public void shouldReturnDefaultCurrency() {
    MonetaryAmountSymbols symbols = new MonetaryAmountSymbols();
    CurrencyUnit currency = Monetary.getCurrency(Locale.getDefault(Locale.Category.FORMAT));
    assertEquals(symbols.getCurrency(), currency);
}
Also used : CurrencyUnit(javax.money.CurrencyUnit) Test(org.testng.annotations.Test)

Example 14 with CurrencyUnit

use of javax.money.CurrencyUnit in project jsr354-ri by JavaMoney.

the class RoudingMonetaryAmountOperatorTest method shouldReturnPositiveValue.

@Test
public void shouldReturnPositiveValue() {
    CurrencyUnit currency = Monetary.getCurrency("EUR");
    MonetaryAmount money = Money.parse("EUR 2.3523");
    MonetaryAmount result = operator.apply(money);
    assertEquals(result.getCurrency(), currency);
    assertEquals(result.getNumber().doubleValue(), 2.35);
}
Also used : CurrencyUnit(javax.money.CurrencyUnit) MonetaryAmount(javax.money.MonetaryAmount) Test(org.testng.annotations.Test)

Example 15 with CurrencyUnit

use of javax.money.CurrencyUnit in project jsr354-ri by JavaMoney.

the class RoudingMonetaryAmountOperatorTest method shouldReturnNegativeValue.

@Test
public void shouldReturnNegativeValue() {
    CurrencyUnit currency = Monetary.getCurrency("BHD");
    MonetaryAmount money = Money.parse("BHD -1.34534432");
    MonetaryAmount result = operator.apply(money);
    assertEquals(result.getCurrency(), currency);
    assertEquals(result.getNumber().doubleValue(), -1.345);
}
Also used : CurrencyUnit(javax.money.CurrencyUnit) MonetaryAmount(javax.money.MonetaryAmount) Test(org.testng.annotations.Test)

Aggregations

CurrencyUnit (javax.money.CurrencyUnit)116 Test (org.testng.annotations.Test)78 MonetaryAmount (javax.money.MonetaryAmount)57 BigDecimal (java.math.BigDecimal)14 Currency (java.util.Currency)8 MonetaryException (javax.money.MonetaryException)6 ExchangeRate (javax.money.convert.ExchangeRate)6 RoundedMoney (org.javamoney.moneta.RoundedMoney)6 IOException (java.io.IOException)5 MathContext (java.math.MathContext)5 MonetaryParseException (javax.money.format.MonetaryParseException)5 Money (org.javamoney.moneta.Money)4 ExchangeRateBuilder (org.javamoney.moneta.convert.ExchangeRateBuilder)3 DefaultNumberValue (org.javamoney.moneta.spi.DefaultNumberValue)3 Test (org.junit.Test)3 BufferedReader (java.io.BufferedReader)2 InputStreamReader (java.io.InputStreamReader)2 LocalDate (java.time.LocalDate)2 ArrayList (java.util.ArrayList)2 HashMap (java.util.HashMap)2