blob: 0f9709f0f6c81ca8ec3231042b7ba19829558f65 [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:
// Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.testing.tests.validation;
import org.eclipse.persistence.descriptors.ClassDescriptor;
import org.eclipse.persistence.exceptions.EclipseLinkException;
import org.eclipse.persistence.testing.framework.TestErrorException;
import java.util.Iterator;
public class GetTableNameTest extends ExceptionTest {
public GetTableNameTest() {
super();
setDescription("This test attempts to call getTableName()");
}
@Override
protected void setup() {
expectedException = null;
}
@Override
public void test() {
try { //test if getTableName() throws casting exception
org.eclipse.persistence.testing.models.employee.relational.EmployeeProject project = new org.eclipse.persistence.testing.models.employee.relational.EmployeeProject();
Iterator<ClassDescriptor> iterator = project.getDescriptors().values().iterator();
while (iterator.hasNext()) {
iterator.next().getTableName();
}
} catch (EclipseLinkException exception) {
caughtException = exception;
}
}
@Override
protected void verify() {
if (caughtException != expectedException) {
throw new TestErrorException("The proper exception was not thrown:\n" + "[CAUGHT] " + caughtException + "\n\n[EXPECTING] " + String.valueOf(expectedException));
}
}
}