blob: 6d3f8bad0978cbb022e19d58d9ebad715b88e317 [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:ffigen/src/code_generator.dart';
import 'package:ffigen/src/header_parser.dart' as parser;
import 'package:ffigen/src/config_provider.dart';
import 'package:logging/logging.dart';
import 'package:test/test.dart';
import 'package:yaml/yaml.dart' as yaml;
import 'package:ffigen/src/strings.dart' as strings;
import '../test_utils.dart';
late Library actual;
void main() {
group('comment_markup_test', () {
setUpAll(() {
logWarnings(Level.SEVERE);
actual = parser.parse(
Config.fromYaml(yaml.loadYaml('''
${strings.name}: 'NativeLibrary'
${strings.description}: 'Comment Markup Test'
${strings.output}: 'unused'
${strings.headers}:
${strings.entryPoints}:
- 'test/header_parser_tests/comment_markup.h'
${strings.comments}:
${strings.style}: ${strings.any}
${strings.length}: ${strings.full}
''') as yaml.YamlMap),
);
});
test('Expected bindings', () {
matchLibraryWithExpected(actual, [
'test',
'debug_generated',
'comment_markup_test_output.dart'
], [
'test',
'header_parser_tests',
'expected_bindings',
'_expected_comment_markup_bindings.dart'
]);
});
});
}