Created
April 21, 2023 17:33
-
-
Save adityadroid/5cc68d1fcc80f302edd35634fa392f20 to your computer and use it in GitHub Desktop.
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
| package me.adityadroid.bitrise.example.flutter_bitrise_integration_test_automation; | |
| import androidx.test.rule.ActivityTestRule; | |
| import dev.flutter.plugins.integration_test.FlutterTestRunner; | |
| import org.junit.Rule; | |
| import org.junit.runner.RunWith; | |
| import me.adityadroid.bitrise.example.flutter_bitrise_integration_test_automation.MainActivity; | |
| @RunWith(FlutterTestRunner.class) | |
| public class MainActivityTest { | |
| @Rule | |
| public ActivityTestRule<MainActivity> rule = new ActivityTestRule<>(MainActivity.class, true, false); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment