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