19 lines
421 B
Dart
19 lines
421 B
Dart
import 'package:flutter/foundation.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
import 'open_data_and_close.dart';
|
|
import 'open_file_and_close.dart';
|
|
import 'open_url_and_close.dart';
|
|
import 'set_get_settings.dart';
|
|
|
|
void main() {
|
|
final shouldSkip = kIsWeb;
|
|
|
|
group('InAppBrowser', () {
|
|
openUrlAndClose();
|
|
openFileAndClose();
|
|
openDataAndClose();
|
|
setGetSettings();
|
|
}, skip: shouldSkip);
|
|
}
|