hasTest method

bool hasTest(
  1. String name
)

Implementation

bool hasTest(String name) {
  return tests.any((test) => test.name == name);
}