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

net.serenitybdd.screenplay.QuestionBuilder Maven / Gradle / Ivy

There is a newer version: 4.2.9
Show newest version
package net.serenitybdd.screenplay;

import net.serenitybdd.screenplay.questions.QuestionWithDefinedSubject;

public class QuestionBuilder {
    private final String subject;

    QuestionBuilder(String subject) {
        this.subject = subject;
    }

    public  Question answeredBy(Question questionToAsk) {
        return new QuestionWithDefinedSubject<>(questionToAsk, subject);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy