14 lines
325 B
Dart
14 lines
325 B
Dart
/*
|
|
* QR.Flutter
|
|
* Copyright (c) 2019 the QR.Flutter authors.
|
|
* See LICENSE for distribution and usage details.
|
|
*/
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
import 'image_test.dart' as image;
|
|
import 'painter_test.dart' as painter;
|
|
|
|
void main() {
|
|
group('image:', image.main);
|
|
group('painter:', painter.main);
|
|
}
|