blob: 7b42e6b2b51dfb066942571de22a7f4adff28c40 [file]
// Copyright (c) 2025, 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_testing/src/mock_packages/flutter/rendering/box.dart';
import 'package:analyzer_testing/src/mock_packages/flutter/rendering/flex.dart';
import 'package:analyzer_testing/src/mock_packages/flutter/rendering/object.dart';
import 'package:analyzer_testing/src/mock_packages/mock_library.dart';
/// The set of compilation units that make up the mock 'rendering' component of
/// the 'flutter' package.
final List<MockLibraryUnit> units = [
renderingLibrary,
renderingBoxLibrary,
renderingFlexLibrary,
renderingObjectLibrary,
];
final renderingLibrary = MockLibraryUnit('lib/rendering.dart', r'''
export 'package:vector_math/vector_math.dart';
export 'painting.dart';
export 'src/rendering/box.dart';
export 'src/rendering/flex.dart';
export 'src/rendering/object.dart';
''');