/* * Copyright 2015-2021 the original author or authors. * * All rights reserved. This program and the accompanying materials are * made available under the terms of the Eclipse Public License v2.0 which * accompanies this distribution and is available at * * https://www.eclipse.org/legal/epl-v20.html */ /** * Provides Java Flight Recorder events for the JUnit Platform. * *

The Flight Recording Listener module implements a * {@link org.junit.platform.launcher.LauncherDiscoveryListener} and a * {@link org.junit.platform.launcher.TestExecutionListener} that generate Java * Flight Recorder (JFR) events. * * @see JEP 328: Flight Recorder * @since 1.7 */ module org.junit.platform.jfr { requires jdk.jfr; requires static org.apiguardian.api; requires org.junit.platform.engine; requires org.junit.platform.launcher; provides org.junit.platform.launcher.LauncherDiscoveryListener with org.junit.platform.jfr.FlightRecordingDiscoveryListener; provides org.junit.platform.launcher.TestExecutionListener with org.junit.platform.jfr.FlightRecordingExecutionListener; }