}
@Test
public void cascadingMapParameter() {
Map<String, Customer> customers = newHashMap();
Customer bob = new Customer( null );
customers.put( "Bob", bob );
try {
customerRepository.cascadingMapParameter( customers );
fail( "Expected ConstraintViolationException wasn't thrown." );