Roland Weisleder
Roland Weisleder
When changing the URL from > https://github-history.netlify.com/pomber/github-history/blob/master/src/index.js to > https://github-history.netlify.com/pomber/github-history/blob/master/src/ I get an "Unexpected error. Check the console." ``` DOMException: "String contains an invalid character" index.js:30:8 314 index.js:30 ``` GitHub...
The `SvAddressProvider` always provides an empty string as apartment number: https://github.com/Devskiller/jfairy/blob/f4c6a92db82c0ec5d1d5a24fe62df542f492e744/src/main/java/com/devskiller/jfairy/producer/person/locale/sv/SvAddressProvider.java#L16-L19 `baseProducer.randomInt(20)` returns an int between 0 and 20 (both inclusive), so it will be never less than 0.
Fixes #130
Given the following snippet ```java Person person1 = Fairy.builder().withLocale(Locale.ENGLISH).withRandomSeed(1).build().person(); System.out.println(person1.getUsername() + ":" + person1.getPassword()); Person person2 = Fairy.builder().withLocale(Locale.ENGLISH).withRandomSeed(1).build().person(); System.out.println(person2.getUsername() + ":" + person2.getPassword()); ``` I would expect that the username...
Extracted this issue from PR #427, see also the discussion on that PR... The ArchUnit build `gradlew build` fails currently on my Windows machine: ``` Execution failed for task ':archunit:spotlessJavaCheck'....
Java 15 will bring us [JEP 360](https://openjdk.java.net/jeps/360) (preview feature) which introduces sealed classes and permitted subclasses. Currently, we are using ASM 8.0.1 which already contains _experimental_ support for permitted subtypes....
When implementing #289 I wasn't sure how to write the rule text so that it's helpful and not too long, including * that field injection is an anti-pattern * links...
The [Bibliography](https://github.com/arc42/quality-requirements/blob/e832deda8218ad76912a820ecfc4cb6933c68d7d/src/asciidoc/bibliography.adoc) contains two dead links: * Capturing Architectural Requirements * Zusammenfassung von ISO-25010
Before this commit, the example used `thenReturn` to mock call activities with a scenario. This worked well if the call activity is called only once. However, if the call activity...
AssertJ version: 3.23.1 Java version: 17 When comparing strings with isEqualToNormalizingNewlines, the handling of `null` can be improved. ### Example 1 ```java @Test void compare_null_and_null() { String actual = null;...