Loading tests/src/com/android/launcher3/ui/TaplTestsLauncher3.java +13 −0 Original line number Diff line number Diff line Loading @@ -29,7 +29,9 @@ import static org.junit.Assume.assumeTrue; import android.content.Intent; import android.graphics.Point; import android.os.SystemClock; import android.platform.test.annotations.IwTest; import android.util.Log; import androidx.test.filters.LargeTest; import androidx.test.runner.AndroidJUnit4; Loading Loading @@ -525,9 +527,11 @@ public class TaplTestsLauncher3 extends AbstractLauncherUiTest { @Test @PortraitLandscape public void testDragAppIconToWorkspaceCell() throws Exception { long startTime, endTime, elapsedTime; Point[] targets = getCornersAndCenterPositions(); for (Point target : targets) { startTime = SystemClock.uptimeMillis(); final HomeAllApps allApps = mLauncher.getWorkspace().switchToAllApps(); allApps.freeze(); try { Loading @@ -537,12 +541,21 @@ public class TaplTestsLauncher3 extends AbstractLauncherUiTest { } // Reset the workspace for the next shortcut creation. initialize(this); endTime = SystemClock.uptimeMillis(); elapsedTime = endTime - startTime; Log.d("testDragAppIconToWorkspaceCellTime", "Milliseconds taken to drag app icon to workspace cell: " + elapsedTime); } // test to move a shortcut to other cell. final HomeAppIcon launcherTestAppIcon = createShortcutInCenterIfNotExist(APP_NAME); for (Point target : targets) { startTime = SystemClock.uptimeMillis(); launcherTestAppIcon.dragToWorkspace(target.x, target.y); endTime = SystemClock.uptimeMillis(); elapsedTime = endTime - startTime; Log.d("testDragAppIconToWorkspaceCellTime", "Milliseconds taken to move shortcut to other cell: " + elapsedTime); } } Loading Loading
tests/src/com/android/launcher3/ui/TaplTestsLauncher3.java +13 −0 Original line number Diff line number Diff line Loading @@ -29,7 +29,9 @@ import static org.junit.Assume.assumeTrue; import android.content.Intent; import android.graphics.Point; import android.os.SystemClock; import android.platform.test.annotations.IwTest; import android.util.Log; import androidx.test.filters.LargeTest; import androidx.test.runner.AndroidJUnit4; Loading Loading @@ -525,9 +527,11 @@ public class TaplTestsLauncher3 extends AbstractLauncherUiTest { @Test @PortraitLandscape public void testDragAppIconToWorkspaceCell() throws Exception { long startTime, endTime, elapsedTime; Point[] targets = getCornersAndCenterPositions(); for (Point target : targets) { startTime = SystemClock.uptimeMillis(); final HomeAllApps allApps = mLauncher.getWorkspace().switchToAllApps(); allApps.freeze(); try { Loading @@ -537,12 +541,21 @@ public class TaplTestsLauncher3 extends AbstractLauncherUiTest { } // Reset the workspace for the next shortcut creation. initialize(this); endTime = SystemClock.uptimeMillis(); elapsedTime = endTime - startTime; Log.d("testDragAppIconToWorkspaceCellTime", "Milliseconds taken to drag app icon to workspace cell: " + elapsedTime); } // test to move a shortcut to other cell. final HomeAppIcon launcherTestAppIcon = createShortcutInCenterIfNotExist(APP_NAME); for (Point target : targets) { startTime = SystemClock.uptimeMillis(); launcherTestAppIcon.dragToWorkspace(target.x, target.y); endTime = SystemClock.uptimeMillis(); elapsedTime = endTime - startTime; Log.d("testDragAppIconToWorkspaceCellTime", "Milliseconds taken to move shortcut to other cell: " + elapsedTime); } } Loading