expectStateNotExists method

void expectStateNotExists(
  1. String path
)

Implementation

void expectStateNotExists(String path) {
  try {
    final value = readState(path);
    if (value != null) {
      throw EnsembleTestFailure('Expected state path "$path" to be absent.');
    }
  } on EnsembleTestFailure {
    // expected
  }
}