Package org.hibernate.beanvalidation.tck.tests.constraints.inheritance.method.validdeclarations.service.impl

Examples of org.hibernate.beanvalidation.tck.tests.constraints.inheritance.method.validdeclarations.service.impl.ImplementationOfParallelInterfacesMarkingReturnValueAsCascaded


  }

  @Test
  @SpecAssertion(section = "4.5.5", id = "d")
  public void testReturnValueMarkedAsCascadedInParallelInterfaces() throws Exception {
    Object object = new ImplementationOfParallelInterfacesMarkingReturnValueAsCascaded();
    Method method = getCreateEventMethod( object );
    Object returnValue = new CalendarEvent();

    Set<ConstraintViolation<Object>> violations = executableValidator.validateReturnValue(
        object,
View Full Code Here

TOP

Related Classes of org.hibernate.beanvalidation.tck.tests.constraints.inheritance.method.validdeclarations.service.impl.ImplementationOfParallelInterfacesMarkingReturnValueAsCascaded

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.