// Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. import 'dart:async'; import 'package:test/test.dart'; import 'package:yaml_edit/yaml_edit.dart'; import 'problem_strings.dart'; void main() { for (final string in problemStrings) { test('expect string $string', () { final doc = YamlEditor(''); /// Using [runZoned] to hide `package:yaml`'s warnings. /// Test failures and errors will still be shown. runZoned(() { expect(() => doc.update([], string), returnsNormally); final value = doc.parseAt([]).value; expect(value, isA()); expect(value, equals(string)); }, zoneSpecification: ZoneSpecification( print: (Zone self, ZoneDelegate parent, Zone zone, String message) {})); }); } }