aboutsummaryrefslogtreecommitdiff
path: root/tests/testdata/inheritanceTESTout.xml
diff options
context:
space:
mode:
authorGravatar rcoh <rcoh@mit.edu>2010-12-29 17:27:33 -0500
committerGravatar rcoh <rcoh@mit.edu>2010-12-29 17:27:33 -0500
commit93dfb8e3003b483c1041c6f7b4ff293935aeb7c0 (patch)
tree6b0e336f664fa519cad164756b68840e56b50b16 /tests/testdata/inheritanceTESTout.xml
parentc8209d01f9ddf4c6670caee08073924cb33e447f (diff)
Inheritence now happens at all levels on reading of config files. No additional resolution of
inheritances should be necessary. RCOH
Diffstat (limited to 'tests/testdata/inheritanceTESTout.xml')
-rw-r--r--tests/testdata/inheritanceTESTout.xml14
1 files changed, 13 insertions, 1 deletions
diff --git a/tests/testdata/inheritanceTESTout.xml b/tests/testdata/inheritanceTESTout.xml
index ffa6667..e8fb228 100644
--- a/tests/testdata/inheritanceTESTout.xml
+++ b/tests/testdata/inheritanceTESTout.xml
@@ -1,4 +1,16 @@
<A>
- <param1>1</param1>
+ <B>
+ <SubB>
+ <SubSubB>
+ <A>
+ <param1>1</param1>
<param2>2</param2>
+</A>
+ </SubSubB>
+ </SubB>
+ <A>
+ <param1>1</param1>
+ <param2>2</param2>
+</A>
+ </B>
</A> \ No newline at end of file