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

net.jqwik.engine.execution.reporting.NullReportingFormat Maven / Gradle / Ivy

The newest version!
package net.jqwik.engine.execution.reporting;

import java.util.*;

import net.jqwik.api.*;

public class NullReportingFormat implements SampleReportingFormat {
	@Override
	// Never used
	public boolean appliesTo(Object value) {
		return true;
	}

	@Override
	public Object report(Object value) {
		return value;
	}

	@Override
	public Optional label(Object value) {
		return Optional.empty();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy