nySetUp function

void nySetUp(
  1. void callback()
)

Execute a callback before each test in the current group.

Implementation

void nySetUp(void Function() callback) {
  setUp(callback);
}