blob: 30d275491f763fcfa0c8438baa69f809905b2286 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0, which accompanies this distribution
* and is available at http://www.eclipse.org/legal/epl-v10.html.
*
* Contributors:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.jpa.eclipselink.core.tests.internal.context.persistence.logging;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* decentralize test creation code
*/
public class JptEclipseLinkPersistenceLoggingTests
{
public static Test suite() {
TestSuite suite = new TestSuite(JptEclipseLinkPersistenceLoggingTests.class.getPackage().getName());
suite.addTestSuite(LoggingValueModelTests.class);
suite.addTestSuite(LoggingAdapterTests.class);
return suite;
}
private JptEclipseLinkPersistenceLoggingTests() {
super();
throw new UnsupportedOperationException();
}
}