If I want to test whether all validators pass, I have to write ```java service.getValidators(DeletionValidator.class).stream().allMatch(v -> v.validate(dto).isEmpty()) ``` It should be something shorter, maybe ```java service.test(DeletionValidator.class, dto) ```