Closed k-jamroz closed 1 week ago
LGTM, thanks @k-jamroz - my only question: is there any expected impact on existing tests using simulator?
I checked tests inheriting from HazelcastTest
:
UCDTest
subclasses override setUp
method, so it should still be invoked onceAbstractMapTest
and AbstractClient1Benchmark
subclasses could be simplified
Fixes test method inheritance to follow JUnit conventions: preparation methods should be executed from superclass first and later from subclass, after test methods in the opposite order. Previously search finished on first class containing method with given annotation (see
findAllDeclaredMethods
).This changes previous behavior, but because it was hardly useful it is assumed that nobody relied on it.