Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 957e4e51 authored by Sebastian Franco's avatar Sebastian Franco Committed by Sebastián Franco
Browse files

Make all tapl test start with Tapl

Flag: NA
Bug: 298234173
Test: only test name change
Change-Id: Ib2e67a569599568cf1e681a7f1ac44924da83b84
parent a6a16220
Loading
Loading
Loading
Loading
+16 −1
Original line number Diff line number Diff line
/*
 * Copyright (C) 2023 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.android.quickstep;

import static androidx.test.InstrumentationRegistry.getInstrumentation;
@@ -27,7 +42,7 @@ import java.time.Duration;

@LargeTest
@RunWith(AndroidJUnit4.class)
public class DigitalWellBeingToastTest extends AbstractQuickStepTest {
public class TaplDigitalWellBeingToastTest extends AbstractQuickStepTest {
    private static final String CALCULATOR_PACKAGE =
            resolveSystemApp(Intent.CATEGORY_APP_CALCULATOR);

+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@ import org.junit.runner.RunWith;

@LargeTest
@RunWith(AndroidJUnit4.class)
public class StartLauncherViaGestureTests extends AbstractQuickStepTest {
public class TaplStartLauncherViaGestureTests extends AbstractQuickStepTest {

    static final int STRESS_REPEAT_COUNT = 10;

+1 −1
Original line number Diff line number Diff line
@@ -85,7 +85,7 @@ import java.util.function.IntConsumer;
 */
@LargeTest
@RunWith(AndroidJUnit4.class)
public class ViewInflationDuringSwipeUp extends AbstractQuickStepTest {
public class TaplViewInflationDuringSwipeUp extends AbstractQuickStepTest {

    private SparseArray<ViewConfiguration> mConfigMap;
    private InitTracker mInitTracker;
+2 −2
Original line number Diff line number Diff line
@@ -58,12 +58,12 @@ import java.util.Map;

@SmallTest
@RunWith(AndroidJUnit4.class)
public class ReorderWidgets extends AbstractLauncherUiTest {
public class TaplReorderWidgetsTest extends AbstractLauncherUiTest {

    @Rule
    public ShellCommandRule mGrantWidgetRule = ShellCommandRule.grantWidgetBind();

    private static final String TAG = ReorderWidgets.class.getSimpleName();
    private static final String TAG = TaplReorderWidgetsTest.class.getSimpleName();

    private static final List<String> FOLDABLE_GRIDS = List.of("normal", "practical", "reasonable");

+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@ import java.util.UUID;
 */
@LargeTest
@RunWith(AndroidJUnit4.class)
public class PromiseIconUiTest extends AbstractLauncherUiTest {
public class TaplPromiseIconUiTest extends AbstractLauncherUiTest {

    private int mSessionId = -1;

Loading