assertEquals(POUND_SYMBOL + "3,021.50", 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) {}
}