[go: nahoru, domu]

Skip to content
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.

[instrumentation_adapter] Update README instructions #2022

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
A few more typo fixes
  • Loading branch information
collinjackson committed Aug 27, 2019
commit 9ebbf79077d687c6a7215d83e7b6d5fc58af171d
9 changes: 5 additions & 4 deletions packages/instrumentation_adapter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,16 @@ void main() {
}
```

Create an instrumentation file in your application's
Create an instrumentation test file in your application's
android/app/src/androidTest/java/com/example/myapp/ directory
(replacing com, example, and myapp with your values). You can
call this file MainActivityTest.java or another name of your choice.
(replacing com, example, and myapp with values from your app's
package name). You can name this test file MainActivityTest.java
or another name of your choice.

```
package com.example.myapp;

import androidx.test.rule.ActivityTestRule;
import androidx.test.rule.ActivityTestRule;
import dev.flutter.plugins.instrumentationadapter.FlutterRunner;
import dev.flutter.plugins.instrumentationadapter.FlutterTest;
import org.junit.runner.RunWith;
Expand Down