expectText method
Implementation
void expectText(String text) {
if (!isTextVisible(text)) {
throw EnsembleTestFailure(
'Expected text "$text" to be visible. ${textFailureHint([text])}',
);
}
}
void expectText(String text) {
if (!isTextVisible(text)) {
throw EnsembleTestFailure(
'Expected text "$text" to be visible. ${textFailureHint([text])}',
);
}
}