nySetUpAll function

void nySetUpAll(
  1. void callback()
)

Execute a callback once before all tests in the current group.

Implementation

void nySetUpAll(void Function() callback) {
  setUpAll(callback);
}