package net.sourceforge.phpeclipse.xdebug.php.model; import junit.framework.TestCase; public class XDebugStackFrameTest extends TestCase { public void testXDebugStackFrame_Constructor_Should_NOt_Fail_With_NPE() { new XDebugStackFrame(null,0); } public void testXDebugStackFrame_GetSourceName() { XDebugStackFrame frame = new XDebugStackFrame(null,0); frame.getSourceName(); } }