/* * 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 */ /** * Public API for test engines. * *
Provides the {@linkplain org.junit.platform.engine.TestEngine} interface, test discovery * and execution reporting support. * * @since 1.0 */ module org.junit.platform.engine { requires static transitive org.apiguardian.api; requires transitive org.junit.platform.commons; requires transitive org.opentest4j; exports org.junit.platform.engine; exports org.junit.platform.engine.discovery; exports org.junit.platform.engine.reporting; // exports org.junit.platform.engine.support; empty package exports org.junit.platform.engine.support.config; exports org.junit.platform.engine.support.descriptor; exports org.junit.platform.engine.support.discovery; exports org.junit.platform.engine.support.filter; exports org.junit.platform.engine.support.hierarchical; exports org.junit.platform.engine.support.store; }