org.junit.platform.engine.TestSource Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2015-2020 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.engine;
import static org.apiguardian.api.API.Status.STABLE;
import java.io.Serializable;
import org.apiguardian.api.API;
/**
* Representation of the source of a test or container used to navigate to
* its location by IDEs and build tools.
*
* This is a marker interface. Clients need to check instances for concrete
* subclasses or subinterfaces.
*
*
Implementations of this interface need to ensure that they are
* serializable and immutable since they may be used as data
* transfer objects.
*
* @since 1.0
*/
@API(status = STABLE, since = "1.0")
public interface TestSource extends Serializable {
}