blob: c3b184ed4b626eb8163633f7bdc906b39f3a0d15 [file] [log] [blame]
/*
* Copyright (c) 2018, 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
*/
package org.eclipse.persistence.testing.sdo.model.dataobject;
import org.eclipse.persistence.sdo.SDOConstants;
import org.eclipse.persistence.sdo.SDOType;
import org.eclipse.persistence.sdo.dataobjects.OpenSequencedTypeImpl;
import org.eclipse.persistence.testing.sdo.SDOTestCase;
import commonj.sdo.helper.TypeHelper;
public class OpenSequencedTypeTestCases extends SDOTestCase {
public OpenSequencedTypeTestCases(String name) {
super(name);
}
public void testClassIdentity() {
TypeHelper helper = TypeHelper.INSTANCE;
SDOType typeFromTypeHelper = (SDOType) helper.getType(SDOConstants.ORACLE_SDO_URL, "OpenSequencedType");
assertNotNull("OpenSequencedType not found in TypeHelper", typeFromTypeHelper);
// Test that the implClass of the Type found in TypeHelper matches the
// Class in our library (therefore not generated dynamically).
Class<OpenSequencedTypeImpl> classFromLib = OpenSequencedTypeImpl.class;
assertEquals("Classes did not match", classFromLib, typeFromTypeHelper.getImplClass());
}
}