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

There's a few cases where sometimes i just want to ignore a specific field. I should be able to do that. This would be a solution to #48 as well....

I'm converting unit tests from JUnit to Spock in a project that uses OpenPojo. The POJO validation test is currently in the same package as the POJOs it's testing, and...

Hi, looks like openpojo 0.8.10 has some compatibility issues with java 9: ``` java.lang.IllegalAccessError: class com.openpojo.random.generator.security.CredentialsRandomGenerator (in unnamed module @0x4275e80d) cannot access class sun.security.krb5.Credentials (in module java.security.jgss) because module java.security.jgss...

I'm using `openpojo` library having version `0.8.10`. There is a scenario where I've following class: ``` public class Foo { //few variables & objects List bars; //all objects/variables & lists...

Hello, We have implemented the Junit for beans classes using openpojo in our maven project. Junits runs fine when executed manually in IDE. But when we run Jacoco command then...

When testing the Getter and Setter on a LocalDateTime field, the following warnings occur. How do we handle testing LocalDateTime fields? WARNING: An illegal reflective access operation has occurred WARNING:...

The test `BusinessIdentityTest.testToString` compares the result with a hardcoded string. However, the function `BusinessIdentity.toString` did not return the deterministic string. From code trace, the root cause is the method `PojoFieldFactory.getPojoFields`,...

Similar to #135, there are other tests that fail when run after other tests in `JavaLoggerTest`. The reason for the failure is the same, and so this pull request proposes...

Issue #104 fixed, now properly generating getter/setter names for boolean fields that start with a prefix followed by "is".

I got some different results/errors, when i run openpojo from Maven command line versus running inside Eclipse IDE. This comes from the fact, that when i execute the unit test...