OLD | NEW |
| (Empty) |
1 | |
2 ======== Move By Word ==== | |
3 Test 1, LTR: | |
4 Move right by one word | |
5 "abc def hij opq rst"[0, 3, 7, 11, 15, 19] | |
6 Move left by one word | |
7 "abc def hij opq rst"[19, 16, 12, 8, 4, 0] | |
8 Test 2, RTL: | |
9 Move left by one word | |
10 "abc def hij opq rst"[0, 16, 12, 8, 4, 19] | |
11 Move right by one word | |
12 "abc def hij opq rst"[19, 3, 7, 11, 15, 0] | |
13 Test 3, LTR: | |
14 Move right by one word | |
15 "ZZZ QQQ BBB CCC XXX"[0, 16, 12, 8, 4, 19] | |
16 Move left by one word | |
17 "ZZZ QQQ BBB CCC XXX"[19, 3, 7, 11, 15, 0] | |
18 Test 4, RTL: | |
19 Move left by one word | |
20 "ZZZ QQQ BBB CCC XXX"[0, 3, 7, 11, 15, 19] | |
21 Move right by one word | |
22 "ZZZ QQQ BBB CCC XXX"[19, 16, 12, 8, 4, 0] | |
23 Test 5, LTR: | |
24 Move right by one word | |
25 "abc def hij AAA BBB WWW opr uvw xyz"[0, 3, 7, 11, 20, 16, 23, 27, 31, 35] | |
26 Move left by one word | |
27 "abc def hij AAA BBB WWW opr uvw xyz"[35, 32, 28, 24, 15, 19, 12, 8, 4, 0] | |
28 Test 6, RTL: | |
29 Move left by one word | |
30 "abc def hij AAA BBB WWW opr uvw xyz"[0, 8, 4, 11, 15, 19, 23, 32, 28, 35] | |
31 Move right by one word | |
32 "abc def hij AAA BBB WWW opr uvw xyz"[35, 27, 31, 24, 20, 16, 12, 3, 7, 0] | |
33 Test 7, LTR: | |
34 Move right by one word | |
35 "abc def ZQB RIG uvw xyz"[0, 3, 7, 12, 15, 19, 23] | |
36 Move left by one word | |
37 "abc def ZQB RIG uvw xyz"[23, 20, 16, 11, 8, 4, 0] | |
38 Test 8, RTL: | |
39 Move left by one word | |
40 "abc def ZQB RIG uvw xyz"[0, 4, 7, 11, 15, 20, 23] | |
41 Move right by one word | |
42 "abc def ZQB RIG uvw xyz"[23, 19, 16, 12, 8, 3, 0] | |
43 Test 9, LTR: | |
44 Move right by one word | |
45 "aaa AAA bbb"[0, 3, 7, 11] | |
46 Move left by one word | |
47 "aaa AAA bbb"[11, 8, 4, 0] | |
48 Test 10, RTL: | |
49 Move left by one word | |
50 "aaa AAA bbb"[0, 3, 7, 11] | |
51 Move right by one word | |
52 "aaa AAA bbb"[11, 8, 4, 0] | |
53 Test 11, LTR: | |
54 Move right by one word | |
55 "AAA BBB WWW aaa bbb ccc DDD SSS UUU"[0, 8, 4, 11, 15, 19, 23, 32, 28, 35] | |
56 Move left by one word | |
57 "AAA BBB WWW aaa bbb ccc DDD SSS UUU"[35, 27, 31, 24, 20, 16, 12, 3, 7, 0] | |
58 Test 12, RTL: | |
59 Move left by one word | |
60 "AAA BBB WWW aaa bbb ccc DDD SSS UUU"[0, 3, 7, 11, 20, 16, 23, 27, 31, 35] | |
61 Move right by one word | |
62 "AAA BBB WWW aaa bbb ccc DDD SSS UUU"[35, 32, 28, 24, 15, 19, 12, 8, 4, 0] | |
63 Test 13, LTR: | |
64 Move right by one word | |
65 "AAA BBB aaa bbb WWW DDD"[0, 4, 7, 11, 15, 20, 23] | |
66 Move left by one word | |
67 "AAA BBB aaa bbb WWW DDD"[23, 19, 16, 12, 8, 3, 0] | |
68 Test 14, RTL: | |
69 Move left by one word | |
70 "AAA BBB aaa bbb WWW DDD"[0, 3, 7, 12, 15, 19, 23] | |
71 Move right by one word | |
72 "AAA BBB aaa bbb WWW DDD"[23, 20, 16, 11, 8, 4, 0] | |
73 Test 15, LTR: | |
74 Move right by one word | |
75 "ZQB abc RIG"[0, 3, 7, 11] | |
76 Move left by one word | |
77 "ZQB abc RIG"[11, 8, 4, 0] | |
78 Test 16, RTL: | |
79 Move left by one word | |
80 "ZQB abc RIG"[0, 3, 7, 11] | |
81 Move right by one word | |
82 "ZQB abc RIG"[11, 8, 4, 0] | |
83 Test 17, LTR: | |
84 Move right by one word | |
85 "abc def ghi jkl mn "[0, 3, 7, 11, 15, 18], "opq rst uvw xyz"[3, 7, 11, 15] | |
86 Move left by one word | |
87 "opq rst uvw xyz"[15, 12, 8, 4, 0], "abc def ghi jkl mn "[16, 12, 8, 4, 0] | |
88 Test 18, RTL: | |
89 Move left by one word | |
90 " abc def AAA AAA hij AAA AAA uvw xyz "[1, 5, 8, 12, 16, 20, 24, 28, 33, 36], "A
AA kj AAA mn opq AAA AAA"[3, 6, 10, 13, 17, 21, 25] FAIL expected: [" abc def
AAA AAA hij AAA AAA uvw xyz "[ 1, 5, 8, 12, 16, 20, 24, 28, 32, 36, ]"
AAA kj AAA mn opq AAA AAA"[ 3, 6, 10, 13, 17, 21, 25] | |
91 " abc def AAA AAA hij AAA AAA uvw xyz "[28, 33] FAIL expected " abc def AAA AA
A hij AAA AAA uvw xyz "[ 32] | |
92 " abc def AAA AAA hij AAA AAA uvw xyz "[29, 33] FAIL expected " abc def AAA AA
A hij AAA AAA uvw xyz "[ 32] | |
93 " abc def AAA AAA hij AAA AAA uvw xyz "[35, 33] FAIL expected " abc def AAA AA
A hij AAA AAA uvw xyz "[ 32] | |
94 " abc def AAA AAA hij AAA AAA uvw xyz "[34, 33] FAIL expected " abc def AAA AA
A hij AAA AAA uvw xyz "[ 32] | |
95 " abc def AAA AAA hij AAA AAA uvw xyz "[33, 36] FAIL expected " abc def AAA AA
A hij AAA AAA uvw xyz "[ 32] | |
96 Move right by one word | |
97 "AAA kj AAA mn opq AAA AAA"[25, 22, 18, 14, 11, 7, 4, 0], " abc def AAA AAA hij
AAA AAA uvw xyz "[32, 29, 25, 21, 17, 13, 9, 4, 1] FAIL expected: ["AAA kj AA
A mn opq AAA AAA"[ 25, 22, 18, 14, 11, 7, 4, 0, ]" abc def AAA AAA hij AA
A AAA uvw xyz "[ 33, 29, 25, 21, 17, 13, 9, 4, 1] | |
98 "AAA kj AAA mn opq AAA AAA"[0], " abc def AAA AAA hij AAA AAA uvw xyz "[32] FA
IL expected " abc def AAA AAA hij AAA AAA uvw xyz "[ 33] | |
99 <DIV>[0], " abc def AAA AAA hij AAA AAA uvw xyz "[32] FAIL expected " abc def
AAA AAA hij AAA AAA uvw xyz "[ 33] | |
100 <DIV>[0], " abc def AAA AAA hij AAA AAA uvw xyz "[32] FAIL expected " abc def
AAA AAA hij AAA AAA uvw xyz "[ 33] | |
101 <DIV>[0], " abc def AAA AAA hij AAA AAA uvw xyz "[32] FAIL expected " abc def
AAA AAA hij AAA AAA uvw xyz "[ 33] | |
102 " abc def AAA AAA hij AAA AAA uvw xyz "[37, 32] FAIL expected " abc def AAA AA
A hij AAA AAA uvw xyz "[ 33] | |
103 " abc def AAA AAA hij AAA AAA uvw xyz "[36, 32] FAIL expected " abc def AAA AA
A hij AAA AAA uvw xyz "[ 33] | |
104 " abc def AAA AAA hij AAA AAA uvw xyz "[30, 32] FAIL expected " abc def AAA AA
A hij AAA AAA uvw xyz "[ 33] | |
105 " abc def AAA AAA hij AAA AAA uvw xyz "[31, 32] FAIL expected " abc def AAA AA
A hij AAA AAA uvw xyz "[ 33] | |
106 " abc def AAA AAA hij AAA AAA uvw xyz "[32, 29] FAIL expected " abc def AAA AA
A hij AAA AAA uvw xyz "[ 33] | |
107 Test 19, LTR: | |
108 Move right by one word | |
109 "abc def hij opq"[0, 3, 7, 14, 18] | |
110 Move left by one word | |
111 "abc def hij opq"[18, 15, 8, 4, 0] | |
112 Test 20, LTR: | |
113 Move right by one word | |
114 " abc def hij opq "[4, 7, 14, 21, 28] | |
115 Move left by one word | |
116 " abc def hij opq "[28, 22, 15, 8, 4] | |
117 Test 21, RTL: | |
118 Move left by one word | |
119 " abc def hij ABW DSU EJH opq rst uvw "[0, 18, 11,
21, 28, 35, 42, 60, 53, 63, 67] | |
120 Move right by one word | |
121 " abc def hij ABW DSU EJH opq rst uvw "[67, 49, 56
, 46, 39, 32, 25, 7, 14, 4, 0] | |
122 Test 22, RTL: | |
123 Move left by one word | |
124 " ABW DSU HJH FUX "[0, 7, 14, 21, 28, 32] | |
125 Move right by one word | |
126 " ABW DSU HJH FUX "[32, 25, 18, 11, 4, 0] | |
127 Test 23, RTL: | |
128 Move left by one word | |
129 "abc def "[0], " rst uvw"[5, 1], "hij opq"[4], "abc def "[8, 4], " rst uvw"[8] | |
130 Move right by one word | |
131 " rst uvw"[8], "abc def "[3, 7], "hij opq"[3, 7], " rst uvw"[4], "abc def "[0] | |
132 Test 24, RTL: | |
133 Move left by one word | |
134 "ABD opq rst DSU "[0, 3, 8, 11, 15], "abc uvw AAA def lmn"[16, 12, 11, 4, 19], "
ABW hij xyz FXX"[3, 8, 11, 15] FAIL expected: ["ABD opq rst DSU "[ 0, 3, 8,
11, 15, ]"abc uvw AAA def lmn"[ 16, 12, 11, 4, ]"ABW hij xyz FXX"[ 3, 8,
11, 15] | |
135 "abc uvw AAA def lmn"[4, 19] FAIL expected "ABW hij xyz FXX"[ 3] | |
136 "abc uvw AAA def lmn"[3, 19] FAIL expected "ABW hij xyz FXX"[ 3] | |
137 "abc uvw AAA def lmn"[2, 19] FAIL expected "ABW hij xyz FXX"[ 3] | |
138 "abc uvw AAA def lmn"[1, 19] FAIL expected "ABW hij xyz FXX"[ 3] | |
139 Move right by one word | |
140 "ABW hij xyz FXX"[15, 12, 7, 4], "abc uvw AAA def lmn"[3, 7, 8, 15], "ABD opq rs
t DSU "[16, 12, 7, 4, 0] | |
141 | |
OLD | NEW |