/******************************************************************************* * Copyright (c) 1998, 2015 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 v. 1.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: * Oracle - initial API and implementation from Oracle TopLink ******************************************************************************/ package org.eclipse.persistence.testing.tests.isolatedsession; import java.io.File; import org.eclipse.persistence.testing.framework.*; import org.eclipse.persistence.sessions.factories.*; import org.eclipse.persistence.sessions.*; public class ProjectXMLTest extends AutoVerifyTestCase { public static String PROJECT_FILE = "org/eclipse/persistence/testing/workbench_integration/MWIntegrationTestEmployeeProject.xml"; public ProjectXMLTest() { setDescription("This test will verify that the isolation setting is set within the project xml"); } public void test() { XMLProjectWriter.write("IsolatedProject.xml", new IsolatedEmployeeProject()); Project project = XMLProjectReader.read("IsolatedProject.xml", getClass().getClassLoader()); if (!project.getDescriptor(IsolatedEmployee.class).isIsolated()) { throw new TestErrorException("IsIsolated flag not copied to and from XML"); } } public void reset() { File file = new File("IsolatedProject.xml"); file.delete(); } }