fqId property
String
get
fqId
<package>:<group1>/<group2>/.../<name>, with the / collapsed when
the test is not nested in any group.
Implementation
String get fqId {
final groups = groupChain.join('/');
return groups.isEmpty
? '$packageName:$name'
: '$packageName:$groups/$name';
}