com.tngtech.junit.dataprovider.resolver.ResolveStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of junit-dataprovider-core Show documentation
Show all versions of junit-dataprovider-core Show documentation
The common core for a TestNG like dataprovider runner for JUnit.
package com.tngtech.junit.dataprovider.resolver;
public enum ResolveStrategy {
/**
* Strategy which stops after the first resolver returns valid dataproviders (= non-empty list) or no further
* resolvers are available.
*/
UNTIL_FIRST_MATCH,
/**
* Loops over all resolvers and aggregates all resulting dataproviders.
*/
AGGREGATE_ALL_MATCHES,
}