blob: 0011b60f64787ed0a2698ca18260b8e09f454d18 [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/error/codes.dart';
import 'package:analyzer/src/test_utilities/package_mixin.dart';
import 'package:test_reflective_loader/test_reflective_loader.dart';
import '../dart/resolution/driver_resolution.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(InvalidFactoryAnnotationTest);
});
}
@reflectiveTest
class InvalidFactoryAnnotationTest extends DriverResolutionTest
with PackageMixin {
test_class() async {
addMetaPackage();
await assertErrorsInCode(r'''
import 'package:meta/meta.dart';
@factory
class X {
}
''', [
error(HintCode.INVALID_FACTORY_ANNOTATION, 33, 8),
]);
}
test_field() async {
addMetaPackage();
await assertErrorsInCode(r'''
import 'package:meta/meta.dart';
class X {
@factory
int x;
}
''', [
error(HintCode.INVALID_FACTORY_ANNOTATION, 45, 8),
]);
}
test_topLevelFunction() async {
addMetaPackage();
await assertErrorsInCode(r'''
import 'package:meta/meta.dart';
@factory
main() { }
''', [
error(HintCode.INVALID_FACTORY_ANNOTATION, 33, 8),
]);
}
}