assertNoActiveExecutions method

void assertNoActiveExecutions()

Fail when any managed execution is still physically owned by the Runtime.

Implementation

void assertNoActiveExecutions() {
  final active = activeExecutionIds;
  if (active.isEmpty) return;
  throw ActiveTestExecutionsException(active);
}