01: /*
02: * Copyright (C) 2005 Joe Walnes.
03: * Copyright (C) 2006, 2007 XStream Committers.
04: * All rights reserved.
05: *
06: * The software in this package is published under the terms of the BSD
07: * style license a copy of which has been included with this distribution in
08: * the LICENSE.txt file.
09: *
10: * Created on 24. September 2005 by Joerg Schaible
11: */
12: package com.thoughtworks.acceptance;
13:
14: import com.thoughtworks.xstream.XStream;
15:
16: public class RelativeXPathNestedCircularReferenceTest extends
17: AbstractNestedCircularReferenceTest {
18:
19: // inherits test from superclass
20: protected void setUp() throws Exception {
21: super.setUp();
22: xstream.setMode(XStream.XPATH_RELATIVE_REFERENCES);
23: }
24:
25: }
|