Package org.hibernate.validator.test.internal.bootstrap

Examples of org.hibernate.validator.test.internal.bootstrap.Customer


  }

  @Test(expectedExceptions = IllegalArgumentException.class, expectedExceptionsMessageRegExp = "HV000163.*")
  public void testPassingNonMatchingMethodParametersThrowsException() throws Exception {
    Method method = CustomerRepository.class.getMethod( "findCustomerByName", String.class );
    validator.validateParameters( customerRepository, method, new Object[] { new Customer() } );
  }
View Full Code Here

TOP

Related Classes of org.hibernate.validator.test.internal.bootstrap.Customer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.