Package de.netseeker.ejoe.test

Source Code of de.netseeker.ejoe.test.XStreamAdaptertest

/*********************************************************************
* XStreamAdaptertest.java
* created on 11.11.2006 by netseeker
* $Id: XStreamAdaptertest.java,v 1.2 2007/02/28 20:25:03 netseeker Exp $
* $Log: XStreamAdaptertest.java,v $
* Revision 1.2  2007/02/28 20:25:03  netseeker
* *** empty log message ***
*
* Revision 1.1  2006/11/12 20:34:42  netseeker
* *** empty log message ***
*
*
* ====================================================================
*
*  Copyright 2005-2006 netseeker aka Michael Manske
*
*  Licensed under the Apache License, Version 2.0 (the "License");
*  you may not use this file except in compliance with the License.
*  You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
*  Unless required by applicable law or agreed to in writing, software
*  distributed under the License is distributed on an "AS IS" BASIS,
*  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*  See the License for the specific language governing permissions and
*  limitations under the License.
* ====================================================================
*
* This file is part of the EJOE framework.
* For more information on the author, please see
* <http://www.manskes.de/>.
*
*********************************************************************/
package de.netseeker.ejoe.test;

import de.netseeker.ejoe.adapter.XStreamAdapter;


/**
* @author netseeker
*
* @since
*/
public class XStreamAdaptertest extends BaseTypeTest
{

    /* (non-Javadoc)
     * @see de.netseeker.ejoe.test.BaseTypeTest#setUp()
     */
    protected void setUp() throws Exception
    {
        if ( adapter == null  || !(adapter instanceof XStreamAdapter) )
        adapter = new XStreamAdapter();
        super.setUp();
    }

}
TOP

Related Classes of de.netseeker.ejoe.test.XStreamAdaptertest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.