Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
34995ba9
Unverified
Commit
34995ba9
authored
Oct 13, 2022
by
Lau Ching Jun
Committed by
GitHub
Oct 13, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make AndroidApk nullable in stopApp. (#113353)
parent
6df26052
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
3 deletions
+10
-3
android_device.dart
packages/flutter_tools/lib/src/android/android_device.dart
+1
-1
daemon_test.dart
...utter_tools/test/commands.shard/hermetic/daemon_test.dart
+1
-1
proxied_devices_test.dart
...ls/test/commands.shard/hermetic/proxied_devices_test.dart
+1
-1
android_device_test.dart
...tools/test/general.shard/android/android_device_test.dart
+7
-0
No files found.
packages/flutter_tools/lib/src/android/android_device.dart
View file @
34995ba9
...
...
@@ -720,7 +720,7 @@ class AndroidDevice extends Device {
@override
Future
<
bool
>
stopApp
(
AndroidApk
app
,
{
AndroidApk
?
app
,
{
String
?
userIdentifier
,
})
{
if
(
app
==
null
)
{
...
...
packages/flutter_tools/test/commands.shard/hermetic/daemon_test.dart
View file @
34995ba9
...
...
@@ -905,7 +905,7 @@ class FakeAndroidDevice extends Fake implements AndroidDevice {
ApplicationPackage
?
stopAppPackage
;
@override
Future
<
bool
>
stopApp
(
ApplicationPackage
app
,
{
ApplicationPackage
?
app
,
{
String
?
userIdentifier
,
})
async
{
stopAppPackage
=
app
;
...
...
packages/flutter_tools/test/commands.shard/hermetic/proxied_devices_test.dart
View file @
34995ba9
...
...
@@ -326,7 +326,7 @@ class FakeAndroidDevice extends Fake implements AndroidDevice {
ApplicationPackage
?
stopAppPackage
;
@override
Future
<
bool
>
stopApp
(
ApplicationPackage
app
,
{
ApplicationPackage
?
app
,
{
String
?
userIdentifier
,
})
async
{
stopAppPackage
=
app
;
...
...
packages/flutter_tools/test/general.shard/android/android_device_test.dart
View file @
34995ba9
...
...
@@ -454,6 +454,13 @@ Uptime: 441088659 Realtime: 521464097
// contains identifier for platform in memory info.
expect
(
json
,
containsPair
(
'platform'
,
'Android'
));
});
testWithoutContext
(
'AndroidDevice stopApp does nothing if app is not passed'
,
()
async
{
final
AndroidDevice
device
=
setUpAndroidDevice
();
expect
(
await
device
.
stopApp
(
null
),
isFalse
);
});
}
AndroidDevice
setUpAndroidDevice
(
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment