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

org.pantsbuild.junit.annotations.TestParallelClassesAndMethods Maven / Gradle / Ivy

Go to download

Annotations for use with org.pantsbuild#junit-runner that support running tests in parallel.

There is a newer version: 0.0.23
Show newest version
// Copyright 2016 Pants project contributors (see CONTRIBUTORS.md).
// Licensed under the Apache License, Version 2.0 (see LICENSE).

package org.pantsbuild.junit.annotations;

import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Annotate that methods in this test class can be run in parallel and it can run in parallel with
 * other test classes. See usage note in
 * {@code org.pantsbuild.tools.junit.impl.ConsoleRunnerImpl}. The {@link TestSerial}
 * {@link TestParallel} {@link TestParallelMethods} annotations takes precedence over this
 * annotation if a class has multiple annotations (including via inheritance).
 * 

* Requires use of the experimental test runner. */ @Retention(RetentionPolicy.RUNTIME) @Inherited @Target(ElementType.TYPE) public @interface TestParallelClassesAndMethods { }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy