blob: 50cb6272146f26992a0ca9601cf6d699b3bec0f1 [file] [log] [blame]
/*
* Copyright (c) 1998, 2021 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 v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// rbarkhouse - May 26 2008 - 1.0M8 - Initial implementation
package org.eclipse.persistence.testing.sdo.helper.xmlhelper.datatype;
import org.eclipse.persistence.sdo.SDOConstants;
import org.eclipse.persistence.sdo.SDOType;
import junit.textui.TestRunner;
public class SDOXMLHelperDatatypeCharacterTestCases extends SDOXMLHelperDatatypeTestCase {
public SDOXMLHelperDatatypeCharacterTestCases(String name) {
super(name);
}
public static void main(String[] args) {
String[] arguments = { "-c", "org.eclipse.persistence.testing.sdo.helper.xmlhelper.datatype.SDOXMLHelperDatatypeCharacterTestCases" };
TestRunner.main(arguments);
}
@Override
protected Class getDatatypeJavaClass() {
return String.class;
}
@Override
protected SDOType getValueType() {
return SDOConstants.SDO_CHARACTER;
}
@Override
protected String getControlFileName() {
return ("./org/eclipse/persistence/testing/sdo/helper/xmlhelper/datatype/myCharacter-1.xml");
}
@Override
protected String getControlRootURI() {
return "myCharacter-NS";
}
@Override
protected String getControlRootName() {
return "myCharacter";
}
@Override
protected String getSchemaNameForUserDefinedType() {
return getSchemaLocation() + "myCharacter.xsd";
}
@Override
protected String getSchemaNameForBuiltinType() {
return getSchemaLocation() + "myCharacter-builtin.xsd";
}
}