From: pombredanne <pombredanne>
Date: Sun, 4 Nov 2007 00:00:12 +0000 (+0000)
Subject: Added passing test with null input.
X-Git-Url: http://secure.phpeclipse.com

Added passing test with null input.
---

diff --git a/net.sourceforge.phpeclipse.xdebug.test/src/net/sourceforge/phpeclipse/xdebug/php/launching/PHPSourceLookupParticipantTest.java b/net.sourceforge.phpeclipse.xdebug.test/src/net/sourceforge/phpeclipse/xdebug/php/launching/PHPSourceLookupParticipantTest.java
index 06efdb9..0b325c3 100644
--- a/net.sourceforge.phpeclipse.xdebug.test/src/net/sourceforge/phpeclipse/xdebug/php/launching/PHPSourceLookupParticipantTest.java
+++ b/net.sourceforge.phpeclipse.xdebug.test/src/net/sourceforge/phpeclipse/xdebug/php/launching/PHPSourceLookupParticipantTest.java
@@ -11,5 +11,11 @@ public class PHPSourceLookupParticipantTest extends TestCase {
 		Object[] findSourceElements = psp.findSourceElements(new Object());
 		assertTrue("array should be empty",findSourceElements.length == 0);
 	}
+	
+	public void testFindSourceElementsObject_WithNull() throws CoreException {
+		PHPSourceLookupParticipant psp = new PHPSourceLookupParticipant();
+		Object[] findSourceElements = psp.findSourceElements(null);
+		assertTrue("array should be empty",findSourceElements.length == 0);
+	}
 
 }