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

com.flextrade.jfixture.SpecimenBuilderContext Maven / Gradle / Ivy

Go to download

JFixture is an open source library based on the popular .NET library, AutoFixture

The newest version!
package com.flextrade.jfixture;

class SpecimenBuilderContext implements SpecimenContext {

    private final SpecimenBuilder builder;

    public SpecimenBuilderContext(SpecimenBuilder builder) {
        this.builder = builder;
    }

    @Override
    public Object resolve(Object request) {
        return this.builder.create(request, this);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy