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

info.novatec.testit.livingdoc.interpreter.AnInterpreter Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
package info.novatec.testit.livingdoc.interpreter;

import info.novatec.testit.livingdoc.reflect.Fixture;
import info.novatec.testit.livingdoc.reflect.PlainOldFixture;
import info.novatec.testit.livingdoc.systemunderdevelopment.SystemUnderDevelopment;


public class AnInterpreter extends RuleForInterpreter {
    @SuppressWarnings("unused")
    public AnInterpreter(SystemUnderDevelopment sud) {
        this(new PlainOldFixture(new NullFixture()));
    }

    public AnInterpreter(Fixture fixture) {
        super(fixture);
    }

    public static class NullFixture {
        public String fixtureName() {
            return null;
        }

        public String fixtureParameters() {
            return null;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy