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

net.jqwik.engine.properties.configurators.NegativeConfigurator Maven / Gradle / Ivy

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

import java.math.*;

import net.jqwik.api.*;
import net.jqwik.api.arbitraries.*;
import net.jqwik.api.configurators.*;
import net.jqwik.api.constraints.*;

public class NegativeConfigurator extends ArbitraryConfiguratorBase {

	public Arbitrary configure(BigDecimalArbitrary arbitrary, Negative negative) {
		return arbitrary.lessOrEqual(BigDecimal.valueOf(-1)).filter(value -> value.compareTo(BigDecimal.ZERO) < 0);
	}

	public BigIntegerArbitrary configure(BigIntegerArbitrary arbitrary, Negative negative) {
		return arbitrary.lessOrEqual(BigInteger.valueOf(-1));
	}

	public ByteArbitrary configure(ByteArbitrary arbitrary, Negative negative) {
		return arbitrary.lessOrEqual((byte) -1);
	}

	public Arbitrary configure(DoubleArbitrary arbitrary, Negative negative) {
		return arbitrary.lessOrEqual(0.0).filter(value -> value < 0.0);
	}

	public Arbitrary configure(FloatArbitrary arbitrary, Negative negative) {
		return arbitrary.lessOrEqual(-0.0f).filter(value -> value < 0.0f);
	}

	public IntegerArbitrary configure(IntegerArbitrary arbitrary, Negative negative) {
		return arbitrary.lessOrEqual(-1);
	}

	public LongArbitrary configure(LongArbitrary arbitrary, Negative negative) {
		return arbitrary.lessOrEqual(-1L);
	}

	public ShortArbitrary configure(ShortArbitrary arbitrary, Negative negative) {
		return arbitrary.lessOrEqual((short) -1);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy