1 package net.sourceforge.phpeclipse.xdebug.php.model;
3 import junit.framework.TestCase;
5 public class XDebugStackFrameTest extends TestCase {
7 public void testXDebugStackFrame_Constructor_Should_NOt_Fail_With_NPE() {
8 new XDebugStackFrame(null,0);
11 public void testXDebugStackFrame_GetSourceName() {
12 XDebugStackFrame frame = new XDebugStackFrame(null,0);
13 frame.getSourceName();