Oliver Becker
Oliver Becker
There is this method in `TagCreator`: ``` public static String document(HtmlTag htmlTag) { return document().render() + htmlTag.render(); } ``` This returns a String by calling `render()`, thus it prevents using...
The performance of the rendering process can be improved by - changing the `TextEscaper` interface method to `void appendEscaped(Appendable out, String text);` - thus preventing the intermediate step of creating...
to have a central and easy to use entry point for configuring the HTML rendering, and to hide the details of FlatHtml and IndentedHtml. Adds static methods in Indenter for...
Sorry for haven't checked this earlier, but after using the 1.5.0 version I noticed that the `render` API might need one more simplification. Background: I have a boolean variable that...
Is there a way to express that classes of a more general package must not access classes of more specialized (or sub) packages? **Rationale**: based on an hexagonal architecture style...
### Before you start - checklist - [X] I followed instructions in documentation written for my React-PDF version - [X] I have checked if this bug is not already reported...
**Describe the bug** I'm using the kover plugin with the following configuration: ```kotlin kover { reports { total { html { onCheck = true } } } } ``` The...
I'm having a library project with ``` implementation("io.github.resilience4j:resilience4j-all") implementation("io.github.resilience4j:resilience4j-annotations") implementation("io.github.resilience4j:resilience4j-kotlin") implementation("io.github.resilience4j:resilience4j-spring-boot3") ``` in its gradle dependencies. After I added ``` implementation("org.springframework.boot:spring-boot-actuator") ``` my spring boot tests fail with the exception...
**Describe the bug** This code ``` assertThat(LocalDate.now()).isEqualTo("today"); ``` throws a `java.time.format.DateTimeParseException`. I would expect an `AssertionError` (or `AssertionFailedError`), i.e. it should behave the same as ``` assertThat(new Date()).isEqualTo("today"); ``` This...
#### Feature summary Whenever additional overloaded versions of `isEqualTo` are provided, then corresponding versions of `isNotEqualTo` should also be provided. At the moment (assertj version 3.27.6) both of these assertions...