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

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

The newest version!
package net.jqwik.engine.discovery.predicates;

import java.lang.reflect.*;
import java.util.function.*;

import net.jqwik.api.*;

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

public class IsMethodAnnotatedWithProperty implements Predicate {

	@Override
	public boolean test(Method method) {
		return isAnnotated(method, Property.class);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy