From 65daa2da8d5f8c0292b1156b198372135417beb0 Mon Sep 17 00:00:00 2001 From: Vadim Tryshev Date: Tue, 22 Aug 2023 12:09:16 -0700 Subject: [PATCH] Properly marking TaplTestsSplitscreen with test annotations Without such annotations, the test may not run Bug: 187761685 Test: presubmit Flag: N/A Change-Id: I597ca8a8f176c1f5ee39e4fa7a7c3ac938b53b7f --- .../src/com/android/quickstep/TaplTestsSplitscreen.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/quickstep/tests/src/com/android/quickstep/TaplTestsSplitscreen.java b/quickstep/tests/src/com/android/quickstep/TaplTestsSplitscreen.java index 1aa7ab6059..92b598b626 100644 --- a/quickstep/tests/src/com/android/quickstep/TaplTestsSplitscreen.java +++ b/quickstep/tests/src/com/android/quickstep/TaplTestsSplitscreen.java @@ -25,6 +25,8 @@ import static org.junit.Assume.assumeTrue; import android.content.Intent; +import androidx.test.ext.junit.runners.AndroidJUnit4; +import androidx.test.filters.LargeTest; import androidx.test.platform.app.InstrumentationRegistry; import com.android.launcher3.config.FeatureFlags; @@ -36,7 +38,10 @@ import com.android.quickstep.TaskbarModeSwitchRule.TaskbarModeSwitch; import org.junit.After; import org.junit.Before; import org.junit.Test; +import org.junit.runner.RunWith; +@LargeTest +@RunWith(AndroidJUnit4.class) public class TaplTestsSplitscreen extends AbstractQuickStepTest { private static final String CALCULATOR_APP_NAME = "Calculator"; private static final String CALCULATOR_APP_PACKAGE =