* from the previous runs are present in the probe header. If some of them
* extend classes from dependencies which are not available for the current
* probe bundle NoClassDefFound exceptions will occur.
*/
public static TestProbeBuilder probeIsolationWorkaround(TestProbeBuilder probeBuilder) {
ReactorManager reactorManager = ReactorManager.getInstance();
try {
Field fieldSystem = ReactorManager.class.getDeclaredField("system");
fieldSystem.setAccessible(true);
ExamSystem system = (ExamSystem) fieldSystem.get(reactorManager);