This repository was archived by the owner on Feb 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9.7k
Add tests in path_provider and url_launcher plugins #22
Merged
Merged
Changes from 1 commit
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
43dbddd
wip
szakarias fc0b5aa
url_launcher test + missing copyrights
szakarias 84cb5f5
formatting
szakarias 2a6cc75
split into smaller tests
szakarias 87f6f58
formatting
szakarias 3b52e07
Merge branch 'master' of github.com:flutter/plugins into addTests
szakarias File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
formatting
- Loading branch information
commit 84cb5f59e7ef50c7ddba8d765f1c45903e538f9d
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -27,7 +27,10 @@ void main() { | |
|
|
||
| directory = await getApplicationDocumentsDirectory(); | ||
|
|
||
| expect(log, equals(<MethodCall>[new MethodCall('getApplicationDocumentsDirectory')])); | ||
| expect( | ||
| log, | ||
| equals( | ||
| <MethodCall>[new MethodCall('getApplicationDocumentsDirectory')])); | ||
|
||
| expect(directory, isNull); | ||
|
|
||
| final String fakePath = "/foo/bar/baz"; | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -16,10 +16,14 @@ void main() { | |
| }); | ||
|
|
||
| await canLaunch('http://example.com/'); | ||
| expect(log, equals(<MethodCall>[new MethodCall('canLaunch', 'http://example.com/')])); | ||
| expect( | ||
| log, | ||
| equals( | ||
| <MethodCall>[new MethodCall('canLaunch', 'http://example.com/')])); | ||
|
||
| log.clear(); | ||
|
|
||
| await launch('http://example.com/'); | ||
| expect(log, equals(<MethodCall>[new MethodCall('launch', 'http://example.com/')])); | ||
| expect(log, | ||
| equals(<MethodCall>[new MethodCall('launch', 'http://example.com/')])); | ||
| }); | ||
| } | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We start a new test here. Should ideally be separated into two invocations of
test.