Adding new passing tests.
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.test / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugStackFrameTest.java
1 package net.sourceforge.phpeclipse.xdebug.php.model;
2
3 import junit.framework.TestCase;
4
5 public class XDebugStackFrameTest extends TestCase {
6
7         public void testXDebugStackFrame_Constructor_Should_NOt_Fail_With_NPE() {
8                 new XDebugStackFrame(null,0);
9         }
10
11         public void testXDebugStackFrame_GetSourceName() {
12                 XDebugStackFrame frame = new XDebugStackFrame(null,0);
13                 frame.getSourceName();
14         }
15
16 }