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

com.nitorcreations.junit.runners.parameterized.ParameterizedSuite Maven / Gradle / Ivy

There is a newer version: 1.3
Show newest version
package com.nitorcreations.junit.runners.parameterized;

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

/**
 * This annotation is used by {@link WrappingParameterizedRunner} to detect the
 * method which configures the parameters with which the suite is to be run. The
 * method signature is expected to be (the name doesn't matter):
 * 
 * 
 * public static void suite(ParameterizedSuiteBuilder builder) { ... }
 * 
*/ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface ParameterizedSuite { }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy