flutter/packages/flutter/test/services/image_decoder_test.dart
2017-03-20 11:14:41 -07:00

21 lines
572 B
Dart

// Copyright 2016 The Chromium 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/services.dart';
import 'package:test/test.dart';
import 'image_data.dart';
void main() {
test('Image decoder control test', () async {
final ui.Image image = await decodeImageFromList(new Uint8List.fromList(kTransparentImage));
expect(image, isNotNull);
expect(image.width, 1);
expect(image.height, 1);
});
}