currentTest property

String? currentTest

Returns the name of the current test or null if no test is currently running.

Implementation

String? get currentTest => _currentTest;
void currentTest=(String? test)

Sets the name of the current running test; may be null if there is no test currently running.

Implementation

set currentTest(String? test) {
  if (_currentTest != test) {
    _currentTest = test;
    _currentTestStreamController.add(test);
  }
}