sulky
sulky copied to clipboard
sulky tools - used by Lilith
[Process forking options](https://docs.gradle.org/current/userguide/performance.html#forking_options). Gradle will run all tests in a single forked VM by default. This can be problematic if there are a lot of tests or some very memory-hungry...
[Parallel test execution maxParallelForks](https://docs.gradle.org/current/userguide/performance.html#parallel_test_execution). Gradle can run multiple test cases in parallel by setting `maxParallelForks`. [Disable report generation](https://docs.gradle.org/current/userguide/performance.html#report_generation). We can conditionally disable it by setting `reports.html.required = false; reports.junitXml.required =...
Probably unwanted `getClass()` in the equals method. `getClass()` should only be used for proxiable objects, like JPA’s entity classes (e.g. implemented by hibernate, eclipselink, etc). Every other class should not...