Ashley
Ashley
Would it be possible to bundle a Java-9-compiled `module-info.class` in with mockito-inline using the multi-version JAR feature (i.e. placing the class in `META-INF/versions/9/module-info.class`). Although Mockito already distributes as an automatic...
#### Feature summary I am currently writing a library that enables the writing of integration tests that run Java annotation processors and invokes the compiler. Part of this is allowing...
Implementation of GH-2647 stack trace assertions.
This implements the classes defined in #2645. The PR currently a work-in-progress, and I will be implementing it over the next week or so when I find time. This is...
First PR for GH-2647 to implement assertions for `StackTraceElement` and `StackTraceElement[]` types. GH-2647: Implement skeleton for stack trace assertions. This introduces the skeleton for two new types of assertion/assumption: -...
#### Summary The JavaDocs for AssertJ appear to be being built under Java 8, which means the Java-9 `module-info.class` descriptor is not being taken into account, resulting in a JavaDoc...
#### Feature summary I would like to be able to perform assertions on classes that I load dynamically from a given classloader. This would enable me to test code that...
#### Feature summary I would like to be able to perform assertions on StackTraceElement objects, as well as arrays/lists of StackTraceElement objects. This enables testing exception handling logic for remote...
Sonatype lift is a free tool for code quality analysis that focuses on security-based checks. Although assertj is primarily for testing, I believe it would be useful to implement, as...
On Java 9 or above, in projects using JPMS modules, Maven will currently raise the following warning due to `kotlin-logging` not having the `Automatic-Module-Name` manifest entry: ``` [WARNING] ***************************************************************************************************************************************************** [WARNING]...