use of org.baeldung.javaxval.methodvalidation.model.Customer in project tutorials by eugenp.
the class ValidationIntegrationTest method whenValidationWithInvalidReturnValue_thenCorrectNumberOfVoilations.
@Test
public void whenValidationWithInvalidReturnValue_thenCorrectNumberOfVoilations() throws NoSuchMethodException {
ReservationManagement object = new ReservationManagement();
Method method = ReservationManagement.class.getMethod("getAllCustomers");
Object returnValue = Collections.<Customer>emptyList();
Set<ConstraintViolation<ReservationManagement>> violations = executableValidator.validateReturnValue(object, method, returnValue);
assertEquals(1, violations.size());
}
use of org.baeldung.javaxval.methodvalidation.model.Customer in project tutorials by eugenp.
the class ValidationIntegrationTest method whenValidationWithValidConstructorReturnValue_thenZeroVoilations.
@Test
public void whenValidationWithValidConstructorReturnValue_thenZeroVoilations() throws NoSuchMethodException {
Constructor<Reservation> constructor = Reservation.class.getConstructor(LocalDate.class, LocalDate.class, Customer.class, int.class);
Reservation createdObject = new Reservation(LocalDate.now().plusDays(1), LocalDate.now().plusDays(2), new Customer("William", "Smith"), 1);
Set<ConstraintViolation<Reservation>> violations = executableValidator.validateConstructorReturnValue(constructor, createdObject);
assertEquals(0, violations.size());
}
use of org.baeldung.javaxval.methodvalidation.model.Customer in project tutorials by eugenp.
the class ValidationIntegrationTest method whenCrossParameterValidationWithValidParameters_thenZeroVoilations.
@Test
public void whenCrossParameterValidationWithValidParameters_thenZeroVoilations() throws NoSuchMethodException {
ReservationManagement object = new ReservationManagement();
Method method = ReservationManagement.class.getMethod("createReservation", LocalDate.class, LocalDate.class, Customer.class);
Object[] parameterValues = { LocalDate.now().plusDays(1), LocalDate.now().plusDays(2), new Customer("John", "Doe") };
Set<ConstraintViolation<ReservationManagement>> violations = executableValidator.validateParameters(object, method, parameterValues);
assertEquals(0, violations.size());
}
Aggregations