File tree 2 files changed +15
-97
lines changed
packages/path_provider/path_provider_linux
2 files changed +15
-97
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -17,4 +17,19 @@ void main() {
17
17
final PathProviderPlatform plugin = PathProviderPlatform .instance;
18
18
expect (await plugin.getTemporaryPath (), '/tmp' );
19
19
});
20
+
21
+ test ('getApplicationSupportPath' , () async {
22
+ final PathProviderPlatform plugin = PathProviderPlatform .instance;
23
+ expect (await plugin.getApplicationSupportPath (), startsWith ('/' ));
24
+ });
25
+
26
+ test ('getApplicationDocumentsPath' , () async {
27
+ final PathProviderPlatform plugin = PathProviderPlatform .instance;
28
+ expect (await plugin.getApplicationDocumentsPath (), startsWith ('/' ));
29
+ });
30
+
31
+ test ('getDownloadsPath' , () async {
32
+ final PathProviderPlatform plugin = PathProviderPlatform .instance;
33
+ expect (await plugin.getDownloadsPath (), startsWith ('/' ));
34
+ });
20
35
}
You can’t perform that action at this time.
0 commit comments