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

net.jqwik.engine.hooks.ResolveReporterHook Maven / Gradle / Ivy

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

import java.util.*;

import net.jqwik.api.*;
import net.jqwik.api.lifecycle.*;

public class ResolveReporterHook implements ResolveParameterHook {

	@Override
	public PropagationMode propagateTo() {
		return PropagationMode.ALL_DESCENDANTS;
	}

	@Override
	public Optional resolve(
		ParameterResolutionContext parameterContext,
		LifecycleContext lifecycleContext
	) {
		if (parameterContext.typeUsage().isOfType(Reporter.class)) {
			ParameterSupplier reporterSupplier = ignore -> lifecycleContext.reporter();
			return Optional.of(reporterSupplier);
		}
		return Optional.empty();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy