blob: da368d52b832f7f0e6a3d502e739a8b3e93835ab [file] [log] [blame]
// Copyright 2019 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// @dart=2.9
import 'package:flutter_test/flutter_test.dart';
import 'package:path_provider/path_provider.dart';
import 'package:integration_test/integration_test.dart';
void main() {
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
testWidgets('Can get temporary directory', (WidgetTester tester) async {
final String tempPath = (await getTemporaryDirectory()).path;
expect(tempPath, isNotEmpty);
});
}