Fixed issue with object casts. Now the method returns an empty array if we recieve...
authorpombredanne <pombredanne>
Sat, 3 Nov 2007 23:56:34 +0000 (23:56 +0000)
committerpombredanne <pombredanne>
Sat, 3 Nov 2007 23:56:34 +0000 (23:56 +0000)
net.sourceforge.phpeclipse.xdebug.test/src/net/sourceforge/phpeclipse/xdebug/php/launching/PHPSourceLookupParticipantTest.java

index 2501476..06efdb9 100644 (file)
@@ -8,7 +8,8 @@ public class PHPSourceLookupParticipantTest extends TestCase {
 
        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);
        }
 
 }