Simon Baslé
Simon Baslé
cc @violetagg
Note that in the second case (`CustomerServiceMockitoTest`) it _appears_ to work because a new bean named `customerServiceMock` is created (per bean overriding `CREATE_OR_REPLACE` strategy). So the context now contains two...
`@TestBean`, `@MockitoBean` and `@MockitoSpyBean` now match a bean by type if no explicit bean name is provided. I would nonetheless encourage users to be as explicit as possible (i.e. specify...
In `Artifactory Gradle`? I only see `Build Script Directory` > If the build script is not located in the root of the build directory, specify the path (relative to the...
Since IntelliJ 2021.2 Jetbrains added support for Actions on Save under `Preferences/Settings | Tools | Actions on Save`. I wonder if plugins can contribute to that list of actions 🤔
This approach works, mainly because it doesn't really extend `StepVerifier` but provides new factory methods that decorate the publisher under test. Despite being an interface, `StepVerifier` isn't really practical to...
> Hi, what if we want to test the result of different queries within the same transaction ? > > We would need to verify intermediate steps, but I don't...
Other changes that I could spot looking at https://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml are: * `413`: `PAYLOAD_TOO_LARGE` becomes `CONTENT_TOO_LARGE` with slight variations in wording around protocols that allow request termination instead of connection close...
We discussed this as a team and we feel such a refresh would best be done after the 6.2.x timeframe, at a minimum. This would imply a full pass on...
yes, sorry, I should have said "after the 6.2.x timeframe, at a minimum". In the meantime, I'd recommend using the raw codes or `HttpStatusCode.valueOf(int)` as a way of dealing with...