expectNoText method
Implementation
void expectNoText(String text) {
if (isTextVisible(text)) {
throw EnsembleTestFailure('Expected text "$text" to not be visible.');
}
}
void expectNoText(String text) {
if (isTextVisible(text)) {
throw EnsembleTestFailure('Expected text "$text" to not be visible.');
}
}