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

net.jqwik.engine.properties.arbitraries.AbstractArbitraryBase Maven / Gradle / Ivy

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

import net.jqwik.api.*;

public abstract class AbstractArbitraryBase implements Cloneable {

	@SuppressWarnings("unchecked")
	protected  A typedClone() {
		try {
			return (A) this.clone();
		} catch (CloneNotSupportedException e) {
			throw new JqwikException(e.getMessage());
		}
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy