io.quarkus.test.junit5.virtual.ThreadPinnedEvents Maven / Gradle / Ivy
package io.quarkus.test.junit5.virtual;
import java.util.List;
import jdk.jfr.consumer.RecordedEvent;
/**
* Object that can be injected in a test method.
* It gives controlled on the captured events, and so let you do manual checks.
*
* The returned list is a copy of the list of captured events.
*/
public interface ThreadPinnedEvents {
List getEvents();
}