blob: e126a289bc2f224d637ba33823f1444d2dbba411 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 1998, 2013 Oracle and/or its affiliates. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0
* which accompanies this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Oracle - initial API and implementation from Oracle TopLink
******************************************************************************/
package org.eclipse.persistence.testing.sdo.helper.xmlhelper;
import org.eclipse.persistence.testing.sdo.SDOTestCase;
public class SDOXMLHelperTestCases extends SDOTestCase {
protected static final String CONTROL_ROOT_NAME = "customer";
protected static final String CONTROL_ROOT_TYPE = "customer-type";
protected static final String CONTROL_ROOT_URI = "http://www.example.org";
protected static final String CONTROL_FIRST_NAME = "Jane";
protected static final String CONTROL_LAST_NAME = "Smith";
protected static final Integer CONTROL_CUSTOMERID = new Integer("111");
protected static final String CONTROL_SIN = "123 456 789";
protected static final String SIN = "sin";
protected static final String CUSTOMERID = "customerID";
protected static final String FIRSTNAME = "firstName";
protected static final String LASTNAME = "lastName";
public SDOXMLHelperTestCases(String name) {
super(name);
}
}