@Test
public void testCoercerRegistrationOverride()
{
try
{
Custom.registerCoercer(new CustomPointCoercer(), CustomPoint.class);
Custom.registerCoercer(new CustomPointCoercer(), CustomPoint.class);
}
catch (IllegalArgumentException e)
{
fail("coercer registration failed for repeat registration of the same coercer, which is allowed");
}