blob: ecc493ab37c6b020c579fb1e6fd6e01896576111 [file] [log] [blame]
// Copyright (c) 2021, 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 'package:analysis_server/src/services/correction/fix/data_driven/transform_set_error_code.dart';
import 'package:test_reflective_loader/test_reflective_loader.dart';
import '../transform_set_parser_test_support.dart';
void main() {
defineReflectiveSuite(() {
defineReflectiveTests(UnsupportedUriChangeTest);
});
}
@reflectiveTest
class UnsupportedUriChangeTest extends AbstractTransformSetParserTest {
void test_integer() {
assertErrors('''
version: 1
transforms:
- title: 'Replace'
date: 2021-11-30
element:
uris: ['test.dart']
function: 'f'
changes:
- kind: 'replacedBy'
newElement:
uris: ['other.dart']
function: 'g'
''', [
error(TransformSetErrorCode.unsupportedUriChange, 182, 14),
]);
}
}