dd static method

Never dd()

Dump state and throw an exception (like Laravel's dd()).

Useful for debugging failed tests.

Implementation

static Never dd() {
  dump();
  throw StateError('Test execution stopped by dd()');
}