HermanBovens
HermanBovens
I guess something like that would help. Or alternatively, a different method than `usingComparator`, which already exists. For example: ``` assertThat(o1).comparableUsing(Comparator comparator).isGreaterThan(o2) ``` The need to construct the comparable assert...
>>Maybe an adapter would work, but that doesn't sound natural. For me it would be far more logical to implement the general case using a comparator, and for comparable assertions...
Hi @scordio, >> the javadoc of usingComparator() is currently incorrect: it only says the Comparator will be used for equals comparison, but other assertions such as isLessThan also use it....
Note that the current "workaround" uses the system locale, which is usually not what you want in a multilingual app. The actual language will need to come from the stored...
OK I just lost almost a day over this bug. I was using the `Html` class to create a few simple `` elements and I thought there was something wrong...
> Compute the expensive value only once at the beginning of the render method, and pass it to all rendering functions that needs it. In complex components this can lead...