getExpected method

List<String> getExpected()

Implementation

List<String> getExpected() {
  final result = Set<String>.from(failures).toList();
  result.sort();
  return result;
}