File size: 1,150 Bytes
2795186 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
/*
* 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;
}
|