25014769f96ab6c56f905474ab6b5902c1cdc0fd
[phpeclipse.git] /
1 package net.sourceforge.phpeclipse.xdebug.php.launching;
2
3 import org.eclipse.core.runtime.CoreException;
4
5 import junit.framework.TestCase;
6
7 public class PHPSourceLookupParticipantTest extends TestCase {
8
9         public void testFindSourceElementsObject() throws CoreException {
10                 PHPSourceLookupParticipant psp = new PHPSourceLookupParticipant();
11                 psp.findSourceElements(new Object());
12         }
13
14 }