openpojo icon indicating copy to clipboard operation
openpojo copied to clipboard

POJO Testing & Identity Management Made Trivial

Results 38 openpojo issues
Sort by recently updated
recently updated
newest added

I have a requirement where I want to have two difference instance of RandomFactory to exist. For instance having, different factory to create positive/negative integers respectively. ``` java RandomFactory randomFactory...

enhancement
Type-Enhancement

Looking in the class ByteCodeFactory I see that the maximum ASM version OpenPOJO is support is version 7.1. But this version only supports JDK 13 and below. Not JDK 17,...

With the following validator: ```java Validator validator = ValidatorBuilder.create().with(new GetterMustExistRule()).with(new SetterMustExistRule()) .with(new SetterTester()).with(new GetterTester()).build(); validator.validate(PojoClassFactory.getPojoClasses(getClass().getPackageName())); ``` This class passes: ```java public class SimpleClass { private final String message; private final...

hi We are getting below error while running our tests against POJO classes. Looks like they increased security levels in jdk17 hence its difficult to change access modifiers etc. Please...

Is it possible to test a class that doesn't have any setter, only a constructor with all of the class fields and getters? I didn't find a way to do...

Can you please add the how to contribute section in the readme docs to help people build the project and start contributing. I tried to build the master branch locally...

I wish to test an override toString method : ```java @Test void test() { PojoClass pojoClass = PojoClassFactory.getPojoClass(Person.class); Validator validator = ValidatorBuilder.create().with(new ToStringTester()).build(); validator.validate(pojoClass); } public static class Person {...

Describe the bug It is possible to encounter an unexpected crash due to using the same hashmap (variable name is repository, in WeakHashMapCacheStorage), from different methods. Of these methods, one...