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

net.jqwik.engine.discovery.predicates.IsScannableContainerClass Maven / Gradle / Ivy

There is a newer version: 1.9.1
Show newest version
package net.jqwik.engine.discovery.predicates;

import java.util.function.*;

import static org.junit.platform.commons.support.ModifierSupport.*;

public class IsScannableContainerClass implements Predicate> {

	private static final IsTestContainer isTestContainer = new IsTestContainer();

	@Override
	public boolean test(Class candidate) {
		if (isPrivate(candidate))
			return false;
		return isTestContainer.test(candidate);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy