id property

String id

Returns the id of the test which is a concatenation of the suite name and the test name.

Implementation

String get id =>
    '${(suiteName?.isNotEmpty == true ? '${suiteName}__' : '')}$name';