expectNotExists method
Implementation
void expectNotExists(String id) {
if (finderForId(id).evaluate().isNotEmpty) {
throw EnsembleTestFailure('Expected widget with id "$id" to not exist.');
}
}
void expectNotExists(String id) {
if (finderForId(id).evaluate().isNotEmpty) {
throw EnsembleTestFailure('Expected widget with id "$id" to not exist.');
}
}