Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 0 additions & 2 deletions espresso/core/javatests/androidx/test/espresso/action/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -327,8 +327,6 @@ axt_android_library_test(
"//espresso/intents/java/androidx/test/espresso/intent:intents",
"//espresso/intents/java/androidx/test/espresso/intent/matcher",
"//ext/junit",
"//runner/android_junit_runner",
"//runner/rules",
"//testapps/ui_testapp/java/androidx/test/ui/app:lib_exported",
"//testapps/ui_testapp/javatests/androidx/test/ui/app:test_resources",
"@maven//:junit_junit",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,20 +29,19 @@
import static org.hamcrest.Matchers.allOf;

import androidx.test.espresso.ViewAction;
import androidx.test.filters.LargeTest;
import androidx.test.rule.ActivityTestRule;
import androidx.test.runner.AndroidJUnit4;
import androidx.test.ext.junit.rules.ActivityScenarioRule;
import androidx.test.ext.junit.runners.AndroidJUnit4;
import androidx.test.ui.app.R;
import androidx.test.ui.app.SwipeActivity;
import org.junit.Rule;
import org.junit.Test;
import org.junit.runner.RunWith;

/** Integration tests for swiping actions. */
@LargeTest
@RunWith(AndroidJUnit4.class)
public class SwipeActionIntegrationTest {
@Rule public ActivityTestRule<SwipeActivity> rule = new ActivityTestRule<>(SwipeActivity.class);
@Rule
public ActivityScenarioRule<SwipeActivity> rule = new ActivityScenarioRule<>(SwipeActivity.class);

/** Tests that a small view can be swiped in both directions. */
@Test
Expand Down
Loading