public void testFindSourceElementsObject() throws CoreException {
PHPSourceLookupParticipant psp = new PHPSourceLookupParticipant();
- psp.findSourceElements(new Object());
+ Object[] findSourceElements = psp.findSourceElements(new Object());
+ assertTrue("array should be empty",findSourceElements.length == 0);
}
}