blob: 56f6c8f188ef07c121cfa5cbcceafaa5cba95a24 [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/mock_library.dart';
final animationAnimationLibrary = MockLibraryUnit(
'lib/src/animation/animation.dart',
r'''
abstract class Animation<T> extends Listenable implements ValueListenable<T> {}
''',
);