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

com.github.nylle.javafixture.SpecimenException Maven / Gradle / Ivy

Go to download

JavaFixture is the attempt to bring Mark Seemann's AutoFixture for .NET to the Java world. Its purpose is to generate full object graphs for use in test suites with a fluent API for customising the test objects during generation.

There is a newer version: 2.11.0
Show newest version
package com.github.nylle.javafixture;

public class SpecimenException extends RuntimeException {

    public SpecimenException(final String message) {
        super(message);
    }

    public SpecimenException(final String message, final Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy