| // 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. |
| |
| import 'dart:typed_data'; |
| import 'dart:ui' as ui; |
| |
| import 'package:flutter/painting.dart'; |
| import 'package:flutter_test/flutter_test.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); |
| }); |
| } |