blob: c9679d5a11cb353b6a5a8c9256e8f9c8f0095cad [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 v1.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:
* rbarkhouse - May 26 2008 - 1.0M8 - Initial implementation
******************************************************************************/
package org.eclipse.persistence.testing.sdo.helper.xmlhelper.datatype;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.persistence.sdo.SDOConstants;
import org.eclipse.persistence.sdo.SDOType;
import commonj.sdo.DataObject;
import junit.textui.TestRunner;
public class SDOXMLHelperDatatypeBooleanTestCases extends SDOXMLHelperDatatypeTestCase {
public SDOXMLHelperDatatypeBooleanTestCases(String name) {
super(name);
}
public static void main(String[] args) {
String[] arguments = { "-c", "org.eclipse.persistence.testing.sdo.helper.xmlhelper.datatype.SDOXMLHelperDatatypeBooleanTestCases" };
TestRunner.main(arguments);
}
protected Class getDatatypeJavaClass() {
return Boolean.class;
}
protected SDOType getValueType() {
return SDOConstants.SDO_BOOLEAN;
}
protected String getControlFileName() {
return ("./org/eclipse/persistence/testing/sdo/helper/xmlhelper/datatype/myBoolean-1.xml");
}
protected String getControlRootURI() {
return "myBoolean-NS";
}
protected String getControlRootName() {
return "myBoolean";
}
protected String getSchemaNameForUserDefinedType() {
return getSchemaLocation() + "myBoolean.xsd";
}
protected String getSchemaNameForBuiltinType() {
return getSchemaLocation() + "myBoolean-builtin.xsd";
}
}