-
Methods in net.serenitybdd.screenplay with parameters of type Question
| Modifier and Type |
Method |
Description |
QuestionSubject |
QuestionSubject.andQuestion(Question question) |
|
<T> Question<T> |
QuestionBuilder.answeredBy(Question<T> questionToAsk) |
|
<ANSWER> ANSWER |
Actor.asksFor(Question<ANSWER> question) |
|
<ANSWER> ANSWER |
PerformsTasks.asksFor(Question<ANSWER> question) |
|
RememberThat |
RememberThat.MemoryBuilder.isAnsweredBy(Question<?> value) |
|
<ANSWER> void |
Actor.remember(java.lang.String key,
Question<ANSWER> question) |
|
static <T> Task |
GivenWhenThen.seeIf(Question<T> question,
org.hamcrest.Matcher<T> matcher) |
|
static <T> Consequence<T> |
GivenWhenThen.seeThat(java.lang.String subject,
Question<? extends T> actual,
java.util.function.Predicate<T> expected) |
|
static <T> Consequence<T> |
GivenWhenThen.seeThat(java.lang.String subject,
Question<? extends T> actual,
org.hamcrest.Matcher<T> expected) |
|
static <T> Consequence<T>[] |
GivenWhenThen.seeThat(java.lang.String subject,
Question<? extends T> actual,
org.hamcrest.Matcher<T>... expectedMatchers) |
|
static <T> Consequence<T> |
GivenWhenThen.seeThat(java.lang.String subject,
Question<java.lang.Boolean> actual) |
|
static <T> Consequence<T> |
GivenWhenThen.seeThat(Question<? extends T> actual,
java.util.function.Predicate<T> expected) |
|
static <T> Consequence<T> |
GivenWhenThen.seeThat(Question<? extends T> actual,
org.hamcrest.Matcher<T> expected) |
|
static <T> Consequence<T>[] |
GivenWhenThen.seeThat(Question<? extends T> actual,
org.hamcrest.Matcher<T>... expectedMatchers) |
|
static <T> Consequence<T> |
GivenWhenThen.seeThat(Question<java.lang.Boolean> actual) |
|
<T> Consequence<T> |
InteractiveConsequence.thenCheckThat(Question<? extends T> actual,
org.hamcrest.Matcher<T> expected) |
|
-
-
-
Methods in net.serenitybdd.screenplay.questions that return Question
| Modifier and Type |
Method |
Description |
static <ANSWER> Question<ANSWER> |
TheValue.of(ANSWER value) |
|
static <ANSWER> Question<ANSWER> |
TheValue.of(java.lang.String subject,
ANSWER value) |
|
static <T extends java.lang.Object & java.lang.Comparable<? super T>> Question<T> |
AggregateQuestions.theMaximumOf(Question<? extends java.util.Collection<T>> listQuestion) |
|
static <T extends java.lang.Object & java.lang.Comparable<? super T>> Question<T> |
AggregateQuestions.theMaximumOf(Question<? extends java.util.Collection<T>> listQuestion,
java.util.Comparator<? super T> comparator) |
|
static <T extends java.lang.Object & java.lang.Comparable<? super T>> Question<T> |
AggregateQuestions.theMinimumOf(Question<? extends java.util.Collection<T>> listQuestion) |
|
static <T extends java.lang.Object & java.lang.Comparable<? super T>> Question<T> |
AggregateQuestions.theMinimumOf(Question<? extends java.util.Collection<T>> listQuestion,
java.util.Comparator<? super T> comparator) |
|
static <T> Question<java.util.List<T>> |
AggregateQuestions.theReverse(Question<? extends java.util.List<T>> listQuestion) |
|
static <T extends java.lang.Object & java.lang.Comparable<? super T>> Question<java.util.List<T>> |
AggregateQuestions.theSorted(Question<? extends java.util.List<T>> listQuestion) |
|
static <T extends java.lang.Object & java.lang.Comparable<? super T>> Question<java.util.List<T>> |
AggregateQuestions.theSorted(Question<? extends java.util.List<T>> listQuestion,
java.util.Comparator<? super T> comparator) |
|
static Question<java.lang.Integer> |
AggregateQuestions.theSumOf(Question<? extends java.util.Collection<java.lang.Integer>> listQuestion) |
|
static <T> Question<java.lang.Integer> |
AggregateQuestions.theTotalNumberOf(Question<? extends java.util.Collection<T>> listQuestion) |
|
Methods in net.serenitybdd.screenplay.questions with parameters of type Question
| Modifier and Type |
Method |
Description |
static <T extends java.lang.Object & java.lang.Comparable<? super T>> Question<T> |
AggregateQuestions.theMaximumOf(Question<? extends java.util.Collection<T>> listQuestion) |
|
static <T extends java.lang.Object & java.lang.Comparable<? super T>> Question<T> |
AggregateQuestions.theMaximumOf(Question<? extends java.util.Collection<T>> listQuestion,
java.util.Comparator<? super T> comparator) |
|
static <T extends java.lang.Object & java.lang.Comparable<? super T>> Question<T> |
AggregateQuestions.theMinimumOf(Question<? extends java.util.Collection<T>> listQuestion) |
|
static <T extends java.lang.Object & java.lang.Comparable<? super T>> Question<T> |
AggregateQuestions.theMinimumOf(Question<? extends java.util.Collection<T>> listQuestion,
java.util.Comparator<? super T> comparator) |
|
static <T> Question<java.util.List<T>> |
AggregateQuestions.theReverse(Question<? extends java.util.List<T>> listQuestion) |
|
static <T extends java.lang.Object & java.lang.Comparable<? super T>> Question<java.util.List<T>> |
AggregateQuestions.theSorted(Question<? extends java.util.List<T>> listQuestion) |
|
static <T extends java.lang.Object & java.lang.Comparable<? super T>> Question<java.util.List<T>> |
AggregateQuestions.theSorted(Question<? extends java.util.List<T>> listQuestion,
java.util.Comparator<? super T> comparator) |
|
static Question<java.lang.Integer> |
AggregateQuestions.theSumOf(Question<? extends java.util.Collection<java.lang.Integer>> listQuestion) |
|
static <T> Question<java.lang.Integer> |
AggregateQuestions.theTotalNumberOf(Question<? extends java.util.Collection<T>> listQuestion) |
|
<T> void |
QuestionHints.HintAdder.to(Question<T> question) |
|
-