I want to enforce my rules when the class is not an abstract class
classes().that().implement(AggregateRoot.class).andAreNotAbstract().should().haveNameNotMatching(".*Aggregate.*").check(javaClasses);
I checked the java predicate class and also didn't find any method that allows checking that the class is abstract.
I want to enforce my rules when the class is not an abstract class
I checked the java predicate class and also didn't find any method that allows checking that the class is abstract.