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

org.junit.extensions.cpsuite.ClasspathFinderFactory Maven / Gradle / Ivy

The newest version!
/*
 * @author Johannes Link ([email protected])
 * 
 * Published under Apache License, Version 2.0 (http://apache.org/licenses/LICENSE-2.0)
 */
package org.junit.extensions.cpsuite;

public class ClasspathFinderFactory implements ClassesFinderFactory {

	public ClassesFinder create(boolean searchInJars, String[] filterPatterns, SuiteType[] suiteTypes, Class[] baseTypes,
			Class[] excludedBaseTypes, String classpathProperty) {
		ClassTester tester = new ClasspathSuiteTester(searchInJars, filterPatterns, suiteTypes, baseTypes, excludedBaseTypes);
		return new ClasspathClassesFinder(tester, classpathProperty);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy