blob: 61aad3ec42a6cfec13ffd5a9db8b2fda74381f9b [file] [log] [blame]
/*
* 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.
*
* <p>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 <a href="https://openjdk.java.net/jeps/328">JEP 328: Flight Recorder</a>
* @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;
}