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

com.natpryce.snodge.IdentityMutator Maven / Gradle / Ivy

Go to download

A small, extensible Java library to randomly mutate JSON documents. Useful for fuzz testing.

There is a newer version: 3.1.0.1
Show newest version
package com.natpryce.snodge;

import java.util.stream.Stream;

public class IdentityMutator implements Mutator {
    @Override
    public Stream mutate(T original, int mutationCount) {
        return Stream.of(original);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy