Andreas Turban

Results 61 comments of Andreas Turban

The issue is fixed in Groovy 5.0.0-alpha-1 and it seams that there will not be a fix in Groovy 4. As commented in the Groovy ticket, you can use `@CompileStatic`...

I have no real preference in any way for or against the `GString` support. How about we go with the existing behavior, and if someone wants the GString support in...

@Vampire for a clean test you are right, but I guess that there are tests out there which are not that clean. If we forbid such a thing, that would...

@leonard84 @Vampire I am still not 100% convinced, because it is not consistent. If the `then` block has not interaction. your TL;DR is not the case, as the first test...

This is fixed with update of dependency geantyref to 1.3.16.

@leonard84 The `VarMap.MappingMode.EXACT` mode does already throw an `UnresolvedTypeVariableException` in that case, so only the `VarMap.MappingMode.ALLOW_INCOMPLETE` case is left, where I would say we shall just return the imcomplete type....

@kaqqao I have tested the Spock issue report against the geantyref master, and it fixes the issue. Thanks a lot!

A `@SpringBean` gets automatically the marker interface `org.spockframework.spring.mock.SpockSpringProxy` added to the mock instance, in the class `SpockSpringProxyCreator`. But final classes with additonal interfaces are not mockable (also not by mockito...

You can specify that a mock should implement additional Interfaces in addition to the mock class. So you could create a mock instance of `YourClass` and also implement e.g. `Runnable`...

@Vampire Do you think this should still hit the 2.4 release?