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

net.jqwik.engine.providers.IteratorArbitraryProvider Maven / Gradle / Ivy

The newest version!
package net.jqwik.engine.providers;

import java.util.*;

import net.jqwik.api.*;

public class IteratorArbitraryProvider extends AbstractCollectionArbitraryProvider {

	@Override
	protected Class getProvidedType() {
		return Iterator.class;
	}

	@Override
	protected Arbitrary create(Arbitrary innerArbitrary) {
		return innerArbitrary.iterator();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy