OLD | NEW |
1 This test checks how text editor updates autocompletion dictionary in a response
to user input. | 1 This test checks how text editor updates autocompletion dictionary in a response
to user input. |
2 | 2 |
3 | 3 |
4 Running: testCompletionsShowUpOnKeyPress | 4 Running: testCompletionsShowUpOnKeyPress |
5 ========= Text in editor ========= | 5 ========= Text in editor ========= |
6 name1 name2 name3 name4 | 6 name1 name2 name3 name4 |
7 name1| | 7 name1| |
8 ======= Words in dictionary ======= | 8 ======= Words in dictionary ======= |
9 [name1, name2, name3, name4] | 9 [name1, name2, name3, name4] |
10 ============= | 10 ============= |
(...skipping 11 matching lines...) Expand all Loading... |
22 [a_b, five, four, one, seven, six, three3_, two] | 22 [a_b, five, four, one, seven, six, three3_, two] |
23 ============= | 23 ============= |
24 | 24 |
25 Running: testAlphaNumericWords | 25 Running: testAlphaNumericWords |
26 ========= Text in editor ========= | 26 ========= Text in editor ========= |
27 |2 2foo foo2 2foo4 foo3bar | 27 |2 2foo foo2 2foo4 foo3bar |
28 ======= Words in dictionary ======= | 28 ======= Words in dictionary ======= |
29 [foo2, foo3bar] | 29 [foo2, foo3bar] |
30 ============= | 30 ============= |
31 | 31 |
| 32 Running: testRemoveDuplicate |
| 33 ========= Text in editor ========= |
| 34 | |
| 35 one |
| 36 ======= Words in dictionary ======= |
| 37 [one] |
| 38 ============= |
| 39 |
32 Running: testSetText | 40 Running: testSetText |
33 ========= Text in editor ========= | 41 ========= Text in editor ========= |
34 |dog cat 'mouse';dog bird | 42 |dog cat 'mouse';dog bird |
35 ======= Words in dictionary ======= | 43 ======= Words in dictionary ======= |
36 [bird, cat, dog, mouse] | 44 [bird, cat, dog, mouse] |
37 ============= | 45 ============= |
38 | 46 |
39 Running: testSimpleEdit | 47 Running: testSimpleEdit |
40 ========= Text in editor ========= | 48 ========= Text in editor ========= |
41 do| cat 'mouse';dog bird | 49 do| cat 'mouse';dog bird |
42 ======= Words in dictionary ======= | 50 ======= Words in dictionary ======= |
43 [bird, cat, do, dog, mouse] | 51 [bird, cat, do, dog, mouse] |
44 ============= | 52 ============= |
45 | 53 |
46 Running: testDeleteOneDogAndOneCat | 54 Running: testDeleteOneDogAndOneCat |
47 ========= Text in editor ========= | 55 ========= Text in editor ========= |
48 | 'mouse';dog bird | 56 | 'mouse';dog bird |
49 ======= Words in dictionary ======= | 57 ======= Words in dictionary ======= |
50 [bird, dog, mouse] | 58 [bird, dog, mouse] |
51 ============= | 59 ============= |
52 | 60 |
OLD | NEW |