assertEquals("3" + CURRENCY_SPACE + "021,5 " + ZLOTYCH_SYMBOL, adapter.displayTitleOf(parsed, (Localization) null));
}
@Test
public void testUnrelatedCurrencySymbolIsRejected() throws Exception {
final Money money = createMoney(1, "eur");
try {
adapter.parseTextEntry(money, "$3021.50");
fail("invalid code accepted " + adapter);
} catch (final TextEntryParseException expected) {
}