blob: 049f378fe09d95ad9cacef8095c96f1e26b5d881 [file] [log] [blame]
// Copyright (c) 2019, 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:analyzer/src/dart/error/syntactic_errors.dart';
import 'package:test_reflective_loader/test_reflective_loader.dart';
import '../dart/resolution/context_collection_resolution.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(InvalidConstructorNameTest);
});
}
@reflectiveTest
class InvalidConstructorNameTest extends PubPackageResolutionTest {
test_notEnclosingClassName_defined() async {
await assertErrorsInCode(r'''
class A {
B() : super();
}
class B {}
''', [
error(ParserErrorCode.INVALID_CONSTRUCTOR_NAME, 12, 1),
]);
}
test_notEnclosingClassName_undefined() async {
await assertErrorsInCode(r'''
class A {
B() : super();
}
''', [
error(ParserErrorCode.INVALID_CONSTRUCTOR_NAME, 12, 1),
]);
}
}