testDescriptions top-level property

List<String> testDescriptions

Implementation

List<String> get testDescriptions =>
    (testImplementation is WithTestDescriptions)
        ? (testImplementation as WithTestDescriptions).testDescriptions
        : ['dev_test'];