mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-03-01 16:26:47 +00:00
Fix: 241000659 Test: atest ReorderWidgets Change-Id: I7dea2fbc676710798187b50d27b63ced9910a43b
84 lines
2.7 KiB
Java
84 lines
2.7 KiB
Java
/*
|
|
* Copyright (C) 2022 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.launcher3.celllayout.testcases;
|
|
|
|
import android.graphics.Point;
|
|
|
|
import java.util.Map;
|
|
|
|
public class MoveOutReorderCase {
|
|
|
|
/** 5x5 Test
|
|
**/
|
|
private static final String START_BOARD_STR_5x5 = ""
|
|
+ "xxxxx\n"
|
|
+ "34-m-\n"
|
|
+ "35111\n"
|
|
+ "32111\n"
|
|
+ "32111";
|
|
private static final Point MOVE_TO_5x5 = new Point(1, 2);
|
|
private static final String END_BOARD_STR_5x5 = ""
|
|
+ "xxxxx\n"
|
|
+ "345--\n"
|
|
+ "3m111\n"
|
|
+ "32111\n"
|
|
+ "32111";
|
|
private static final ReorderTestCase TEST_CASE_5x5 = new ReorderTestCase(START_BOARD_STR_5x5,
|
|
MOVE_TO_5x5,
|
|
END_BOARD_STR_5x5);
|
|
|
|
/** 6x5 Test
|
|
**/
|
|
private static final String START_BOARD_STR_6x5 = ""
|
|
+ "xxxxxx\n"
|
|
+ "34-m--\n"
|
|
+ "351111\n"
|
|
+ "321111\n"
|
|
+ "321111";
|
|
private static final Point MOVE_TO_6x5 = new Point(1, 2);
|
|
private static final String END_BOARD_STR_6x5 = ""
|
|
+ "xxxxxx\n"
|
|
+ "345---\n"
|
|
+ "3m1111\n"
|
|
+ "321111\n"
|
|
+ "321111";
|
|
private static final ReorderTestCase TEST_CASE_6x5 = new ReorderTestCase(START_BOARD_STR_6x5,
|
|
MOVE_TO_6x5,
|
|
END_BOARD_STR_6x5);
|
|
|
|
/** 4x4 Test
|
|
**/
|
|
private static final String START_BOARD_STR_4x4 = ""
|
|
+ "xxxx\n"
|
|
+ "34-m\n"
|
|
+ "3511\n"
|
|
+ "3211";
|
|
private static final Point MOVE_TO_4x4 = new Point(1, 2);
|
|
private static final String END_BOARD_STR_4x4 = ""
|
|
+ "xxxx\n"
|
|
+ "345-\n"
|
|
+ "3m11\n"
|
|
+ "3211";
|
|
private static final ReorderTestCase TEST_CASE_4x4 = new ReorderTestCase(START_BOARD_STR_4x4,
|
|
MOVE_TO_4x4,
|
|
END_BOARD_STR_4x4);
|
|
|
|
public static final Map<Point, ReorderTestCase> TEST_BY_GRID_SIZE =
|
|
Map.of(new Point(5, 5), TEST_CASE_5x5,
|
|
new Point(6, 5), TEST_CASE_6x5,
|
|
new Point(4, 4), TEST_CASE_4x4);
|
|
}
|