1
0
Fork 0

missed test file in last commit

pull/562/head
Philip Nelson 2017-12-24 20:32:51 +11:00
parent 5acc982b68
commit a4612acb1d
No known key found for this signature in database
GPG Key ID: 8C8235644C5E2279
1 changed files with 15 additions and 0 deletions

View File

@ -691,6 +691,21 @@ class CompletionTest extends TestCase
),
]
],
'foreach unknown type' => [
new Position(39, 10),
[
new CompletionItem(
'$unknown',
CompletionItemKind::VARIABLE,
'mixed',
null,
null,
null,
null,
new TextEdit(new Range(new Position(39, 10), new Position(39, 10)), 'wn')
),
]
],
];
}