1
0
Fork 0

update tests

pull/451/head
Nicolas MURE 2017-08-06 17:25:26 +02:00
parent 2d91ee8eff
commit b7c712842f
No known key found for this signature in database
GPG Key ID: E5B036F9145C4CAA
1 changed files with 20 additions and 20 deletions

View File

@ -615,18 +615,6 @@ class CompletionTest extends TestCase
new Position(12, 16)
)->wait();
$this->assertEquals(new CompletionList([
new CompletionItem(
'testProperty',
CompletionItemKind::PROPERTY,
'\TestClass', // Type of the property
'Reprehenderit magna velit mollit ipsum do.'
),
new CompletionItem(
'testMethod',
CompletionItemKind::METHOD,
'\TestClass', // Return type of the method
'Non culpa nostrud mollit esse sunt laboris in irure ullamco cupidatat amet.'
),
new CompletionItem(
'foo',
CompletionItemKind::PROPERTY,
@ -650,7 +638,19 @@ class CompletionTest extends TestCase
CompletionItemKind::METHOD,
'mixed', // Return type of the method
null
)
),
new CompletionItem(
'testProperty',
CompletionItemKind::PROPERTY,
'\TestClass', // Type of the property
'Reprehenderit magna velit mollit ipsum do.'
),
new CompletionItem(
'testMethod',
CompletionItemKind::METHOD,
'\TestClass', // Return type of the method
'Non culpa nostrud mollit esse sunt laboris in irure ullamco cupidatat amet.'
),
], true), $items);
}
@ -663,11 +663,6 @@ class CompletionTest extends TestCase
new Position(17, 23)
)->wait();
$this->assertEquals(new CompletionList([
new CompletionItem(
'foo',
CompletionItemKind::METHOD,
'$this' // Return type of the method
),
new CompletionItem(
'bar',
CompletionItemKind::METHOD,
@ -677,7 +672,12 @@ class CompletionTest extends TestCase
'qux',
CompletionItemKind::METHOD,
'mixed' // Return type of the method
)
),
new CompletionItem(
'foo',
CompletionItemKind::METHOD,
'$this' // Return type of the method
),
], true), $items);
}
}