Christopher Smith
Christopher Smith
I'm also seeing the same issue.
I've rolled over to using Mimosa and just calling out from the Maven build. It seems that the consensus is forming to just use a native toolchain for the HTML/CSS/JS...
This should be possible with multiple executions.
Confirmed that as of 4.3.1 classes are generated, but: - The classes incorrectly extend `CollectionType` instead of whatever they're a collection of. - The above-mentioned initializer error. - When the...
I certainly can, but that's really clumsy code to read. For the built-in Java 8 streams, I can pre-decorate the function call and simply say `map(decorated)`; I'd really prefer to...
Came here to ask for this.
I'm aware of the "first stub" issue, and it _feels_ like a bug (specifically, that it happens even if I explicitly say `doThing(_ as SpecificType)`). And I've been using Spock...
This same bug bit me again today on Spock 1.2 for this _exact_ case: The default method is a wrapper that does some useful conversion and delegates to the underlying....
And `callRealMethod()` doesn't work in 1.2. In fact, the situation is actually _worse_, because the documented default behavior for mock with a return type of `Optional` is `empty`, but a...
[I have a repro](https://github.com/chrylis/spock-729-repro) of the underlying concerns. To summarize: * Wiping out a default implementation in any test double that does not have a declared interaction violates the Rule...