aboutsummaryrefslogtreecommitdiffstats
path: root/ajde
diff options
context:
space:
mode:
authorwisberg <wisberg>2003-04-28 23:56:48 +0000
committerwisberg <wisberg>2003-04-28 23:56:48 +0000
commit25030e58eb29e7f0ac1cf029f2332581e1a2f21b (patch)
treea213e66e63c0f75442cd6ce5f44390841e7a5612 /ajde
parentc5175f34dc5c7828d67dec3b790632cccefbe8a6 (diff)
downloadaspectj-25030e58eb29e7f0ac1cf029f2332581e1a2f21b.tar.gz
aspectj-25030e58eb29e7f0ac1cf029f2332581e1a2f21b.zip
test failing - node is java file, should be method execution main, so no parent
Diffstat (limited to 'ajde')
-rw-r--r--ajde/testsrc/org/aspectj/ajde/StructureModelTest.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/ajde/testsrc/org/aspectj/ajde/StructureModelTest.java b/ajde/testsrc/org/aspectj/ajde/StructureModelTest.java
index 5e7fc0596..1c5fb1e61 100644
--- a/ajde/testsrc/org/aspectj/ajde/StructureModelTest.java
+++ b/ajde/testsrc/org/aspectj/ajde/StructureModelTest.java
@@ -120,6 +120,7 @@ public class StructureModelTest extends AjdeTestCase {
assertTrue("find result", node != null);
ProgramElementNode pNode = (ProgramElementNode)((ProgramElementNode)node).getParent();
+ assertTrue("null parent", pNode != null);
assertTrue("found node: " + pNode.getName(), pNode.isRunnable());
}