all_test.dart 325 B

1234567891011121314
  1. /*
  2. * QR.Flutter
  3. * Copyright (c) 2019 the QR.Flutter authors.
  4. * See LICENSE for distribution and usage details.
  5. */
  6. import 'package:flutter_test/flutter_test.dart';
  7. import 'image_test.dart' as image;
  8. import 'painter_test.dart' as painter;
  9. void main() {
  10. group('image:', image.main);
  11. group('painter:', painter.main);
  12. }