testDescriptions top-level property

List<String> get testDescriptions

Test descriptions.

Implementation

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