16 lines
331 B
Dart
16 lines
331 B
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() {
|
||
|
group('InAppBrowser', () {
|
||
|
openUrlAndClose();
|
||
|
openFileAndClose();
|
||
|
openDataAndClose();
|
||
|
setGetSettings();
|
||
|
});
|
||
|
}
|