blob: fae69ac24b8dae622b6d2f8cd4da297883a04deb [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 - 2009-03-13 09:49:35 - initial implementation
package org.eclipse.persistence.testing.sdo.helper.xmlhelper.load;
import commonj.sdo.DataObject;
import commonj.sdo.Property;
import commonj.sdo.helper.XMLDocument;
public class StringWrapperBug268335TestCases extends SDOXMLHelperLoadTestCases {
public StringWrapperBug268335TestCases(String name) {
super(name);
}
@Override
protected String getFileNameToLoad() {
return ("./org/eclipse/persistence/testing/sdo/helper/xmlhelper/load/268335-string.xml");
}
@Override
protected String getSchemaName() {
return "./org/eclipse/persistence/testing/sdo/helper/xmlhelper/load/268335.xsd";
}
@Override
protected void verifyDocument(XMLDocument document) {
super.verifyDocument(document);
DataObject stringDO = document.getRootObject();
String doClassName = stringDO.getClass().getCanonicalName();
// Test that the root object's class is an instance of StringWrapperImpl,
// not StringsWrapperImpl (bug 268335)
assertEquals("The wrong wrapper type was created.", doClassName, "org.eclipse.persistence.sdo.types.SDOWrapperType.StringWrapperImpl");
}
@Override
protected void createTypes() {
}
}