expectStateExists method

void expectStateExists(
  1. String path
)

Implementation

void expectStateExists(String path) {
  try {
    readState(path);
  } catch (_) {
    throw EnsembleTestFailure('Expected state path "$path" to exist.');
  }
}