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

spock.genesis.generators.values.NullGenerator.groovy Maven / Gradle / Ivy

Go to download

Mostly lazy data generators for property based testing using the Spock test framework

The newest version!
package spock.genesis.generators.values

import groovy.transform.CompileStatic
import spock.genesis.generators.InfiniteIterator

@CompileStatic
class NullGenerator extends ValueGenerator {

    NullGenerator() {
        super(null)
    }

    InfiniteIterator iterator() {
        new InfiniteIterator() {
            @Override
            E next() {
                null
            }
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy