Stefan Mandel
Stefan Mandel
Seems that perfect hash maps are not that perfect. Check this and replace them if needed
From [the blog](http://blog.amygdalum.net/string-search-java-jdk/#more-147): > Searching over 1M+ strings – it would be a lot of overhead and many temp objects to create lower case strings… > > It would be...
I am not certain to understand ... I would suggest that you implement a triple - A benchmark `extends MatcherBenchmark` - An automaton `implements Automaton` which is referenced in the...
Probably you found the files `*bench*.cmd`. They write the benchmark data to csv and text output (examples are attached), Unfortunately I did not develop tools to analyze or visualize the...
The first solution id a variant of (3) and fails because of a dropped temporary value. You probably meant: ``` fn test() { assert_that!(S::new(42), eq(S::new(42))); assert_that!(S::new(42), not(eq(S::new(41)))); } ``` which...
Yet my idea will conflict with backward compatibility, however my thoughts about this: What is more intuitive when asserting a statement on some argument: 1. the assertion consumes the argument...
Solution with assertj: * primitive and composite types should work out of the box * `assertThat ... isEqualTo ...` * `assertThat ... extracting ... isEqualTo ...` * `assertThat ... extracting...
Thanks for your answer. If you are interested: A documentation how to do this at sonatype is found [here](https://central.sonatype.org/publish/publish-guide/). Of course there is some initial work to be done, but...
I analyzed the Problem and tracked it down to ``` getMockHandlerOrNull ``` with the line ``` assert getMockMaker(handler.getMockSettings().getMockMaker()) == mockMaker; ``` Assuming we have more than one Mockmaker in the...