Examples of ImplementationOfInterfaceAndSuperClassBothWithGroupConversionOnReturnValue


Examples of org.hibernate.beanvalidation.tck.tests.constraints.groups.groupconversion.service.impl.ImplementationOfInterfaceAndSuperClassBothWithGroupConversionOnReturnValue

      @SpecAssertion(section = "4.4.5", id = "i"),
      @SpecAssertion(section = "4.4.5", id = "j")
  })
  public void testGroupConversionGivenOnReturnValueInSuperClassAndImplementedInterface()
      throws Exception {
    Object object = new ImplementationOfInterfaceAndSuperClassBothWithGroupConversionOnReturnValue();
    Method method = ImplementationOfInterfaceAndSuperClassBothWithGroupConversionOnReturnValue.class
        .getMethod( "getUser" );
    Object returnValue = null;

    validator.forExecutables().validateReturnValue( object, method, returnValue );
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.