All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.junit.platform.launcher.PostDiscoveryFilter Maven / Gradle / Ivy

/*
 * Copyright 2015-2019 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
 */

package org.junit.platform.launcher;

import static org.apiguardian.api.API.Status.STABLE;

import org.apiguardian.api.API;
import org.junit.platform.engine.Filter;
import org.junit.platform.engine.TestDescriptor;
import org.junit.platform.engine.TestEngine;

/**
 * A {@code PostDiscoveryFilter} is applied to {@link TestDescriptor TestDescriptors}
 * after test discovery.
 *
 * 

A {@code PostDiscoveryFilter} must not modify the * {@link TestDescriptor TestDescriptors} it is applied to in any way. * *

{@link TestEngine TestEngines} must not apply * {@code PostDiscoveryFilters} during the test discovery phase. * * @since 1.0 * @see LauncherDiscoveryRequest * @see TestEngine */ @API(status = STABLE, since = "1.0") public interface PostDiscoveryFilter extends Filter { }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy