blob: 1a5a83c3118b9bba661b4e811cd250b6ad23cb90 [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/ffi_code.dart';
import 'package:test_reflective_loader/test_reflective_loader.dart';
import '../dart/resolution/context_collection_resolution.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(MissingAnnotationOnStructFieldTest);
});
}
@reflectiveTest
class MissingAnnotationOnStructFieldTest extends PubPackageResolutionTest {
test_missing_int() async {
await assertErrorsInCode(r'''
import 'dart:ffi';
class C extends Struct {
int x;
}
''', [
error(FfiCode.MISSING_ANNOTATION_ON_STRUCT_FIELD, 46, 3),
]);
}
test_notMissing() async {
await assertNoErrorsInCode(r'''
import 'dart:ffi';
class C extends Struct {
@Int32() int x;
}
''');
}
}