Leonard Brünings

Results 271 comments of Leonard Brünings

Looking at the example code, I see that the fields are `protected`. If you make them `public`, it works without the `.@field` access. https://groovy-lang.org/objectorientation.html#properties >You can define a property with:...

@johannesgottschalk your comment is enough, if you have any question feel free to ask.

If it is just one spec, what is stopping you from just setting it to `CONCURRENT`?

I did some tests the double `stop()` is caused by one time being called by the JUnit Platform and a second time via a shutdown hook that functions as a...

Well, since the extensions can also exclude Specs/Features from being executed, change method orders, define name and so on, they have to run during the discover phase. All the `visit*`...

With the current surefire implementation you'd get spammed with `discoveryStart`/`discoveryStop`, since surefire actually launches a separate discovery request for **every** individual class, and then again one last time a combined...

I've created an issue in the surefire bug tracker https://issues.apache.org/jira/browse/SUREFIRE-1864

Hi @CamilYed welcome, please don't hijack an issue for off-topic question. You can use one of our communication channels * User Forum -- https://github.com/spockframework/spock/discussions * Chat -- https://gitter.im/spockframework/spock * Stack...

I see several issues: - first there are formatting changes to otherwise unrelated parts of the code. - imho the AST code should not generate a loop but use a...

Just note that `_` is already used in a `Specification` as a wildcard matcher for mocking.