mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
27 lines
799 B
Dart
27 lines
799 B
Dart
// Copyright 2014 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// @dart = 2.8
|
|
|
|
import 'dart:typed_data';
|
|
import 'dart:ui' as ui;
|
|
|
|
import 'package:flutter/painting.dart';
|
|
|
|
import '../flutter_test_alternative.dart';
|
|
import '../image_data.dart';
|
|
import 'painting_utils.dart';
|
|
|
|
void main() {
|
|
final PaintingBindingSpy binding = PaintingBindingSpy();
|
|
test('Image decoder control test', () async {
|
|
expect(binding.instantiateImageCodecCalledCount, 0);
|
|
final ui.Image image = await decodeImageFromList(Uint8List.fromList(kTransparentImage));
|
|
expect(image, isNotNull);
|
|
expect(image.width, 1);
|
|
expect(image.height, 1);
|
|
expect(binding.instantiateImageCodecCalledCount, 1);
|
|
});
|
|
}
|