Sampath Sukesh Ravolaparthi
Sampath Sukesh Ravolaparthi
fix: `body-max-line-length` is not respecting `footer-max-line-length` and failing for long footers
### Steps to Reproduce ```bash 1. First step set rules { "body-max-line-length": [2, "always", 100], "footer-max-line-length": [2, "always", 150], } 2. Second step In commit have a footer greater than...
The `@Spy` annotated fields initalized by `closable = MockitoAnnotations.openMocks(this)` is not cleared by `closable.close()` ex: ```java package example.package; import static org.assertj.core.api.Assertions.assertThat; import java.util.ArrayList; import net.jqwik.api.ForAll; import net.jqwik.api.Property; import net.jqwik.api.constraints.AlphaChars; import...
#### Feature summary Provide `isInstanceOfAny`, `isNotInstanceOfAny` variants for `hasCauseInstanceOf`, `hasCauseExactlyInstanceOf`, `hasRootCauseInstanceOf`, `hasRootCauseExactlyInstanceOf` ... throwable asserts. #### Example Before ```java assertThat(result.getResolvedException()) .isInstanceOfAny(ConstraintViolationException.class, MethodArgumentNotValidException.class) ``` After ```java assertThat(result.getResolvedException()) .hasCauseExactlyInstanceOfAny(ConstraintViolationException.class, MethodArgumentNotValidException.class) ```
**Affects:** spring-boot-3.3.0+ ### Initial Context The `ResponseEntityExceptionHandler` is a really good utility class as it provides a default exception handler for many exceptions out of the box. Extending it with...
## Testing Problem The `@Spy` annotated fields initalized by `closable = MockitoAnnotations.openMocks(this)` is not cleared by `closable.close()` ex: ```java package example.package; import static org.assertj.core.api.Assertions.assertThat; import java.util.ArrayList; import net.jqwik.api.ForAll; import net.jqwik.api.Property;...
### Use case Allow configuration/overriding of mappings for subtypes in `@SubclassMapping` Assume the following classes exits ```java @Data public abstract class A { private String a; } @Data public abstract...
### First check - [X] I added a descriptive title to this issue. - [X] I used the GitHub search to find a similar issue and didn't find it. -...