Stefano Cordio

Results 593 comments of Stefano Cordio

Inspiration for the Spring Framework integration test setup: uber/NullAway#1251

Hi @holle, I have an idea about the fix (to be reviewed & reconfirmed by @ctongfei). I'll raise a PR in the upcoming days and let you know, so that...

Yes, they're generated by the following execution: ``` mvn org.apache.maven.plugins:maven-wrapper-plugin:3.3.2:wrapper -Dmaven=3.9.9 ``` Feel free to drop mine and regenerate them, just to reconfirm that there are no customizations 🙂

Yes, they are usually committed especially to be used in the CI jobs or locally, so that the project locks in the Maven version to be used and doesn't depend...

@ctongfei I noticed you changed the base branch, so I rebased the PR accordingly 👍

Hi @ctongfei, in case there is something I should adjust further, feel free to let me know!

No worries! Have you considered automating the release process via GitHub Actions? In case you're interested, I'd be happy to raise a separate MR for it (along the lines of...

To avoid cluttering the API with all the possible use case combinations, we tend to favor navigation methods wherever possible. What do you think about having `withSuppressedExceptionsThat()`, which would allow...

An equivalent JUnit reproducer that can be executed in [`assertj-core-groovy`](https://github.com/assertj/assertj/tree/main/assertj-tests/assertj-integration-tests/assertj-core-groovy): ```groovy package org.example.custom.assertions.tests import org.example.custom.assertions.DomainSoftAssertions import org.example.custom.assertions.domain.DomainObject import org.junit.jupiter.api.Test import static org.assertj.core.api.BDDAssertions.thenNoException class MyTest { @Test void test() { //...

The previous stack trace fails at: ``` org.example.custom.assertions.domain.assertions.ListDomainObjectsAssertion$ByteBuddy$P47T2xhc.containsExactlyInAnyOrderForProxy(Unknown Source) ``` so apparently the issue is in the ByteBuddy proxy, although the stack trace reported by Spock doesn't mention it. When...