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