Sampath Sukesh Ravolaparthi

Results 7 issues of Sampath Sukesh Ravolaparthi

### 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...

bug
help wanted

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) ```

status: team discussion

**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...

status: waiting-for-triage
in: web

## 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...

feature

### 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. -...

bug
needs:research