blob: 7a6df3fa304edad191c7111f1a4d5b56e1685939 [file] [log] [blame]
/*
* Copyright (c) 2014, 2020 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:
// Dmitry Kornilov - Initial implementation
package org.eclipse.persistence.jpars.test;
import org.eclipse.persistence.jpars.test.server.latest.ServerCrudLatestTest;
import org.eclipse.persistence.jpars.test.server.latest.ServerEmployeeLatestTest;
import org.eclipse.persistence.jpars.test.server.latest.ServerFieldsFilteringLatestTest;
import org.eclipse.persistence.jpars.test.server.latest.ServerLinksLatestTest;
import org.eclipse.persistence.jpars.test.server.latest.ServerPageableLatestTest;
import org.eclipse.persistence.jpars.test.server.latest.ServerTravelerLatestTest;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
@RunWith(Suite.class)
@SuiteClasses({
ServerCrudLatestTest.class,
ServerEmployeeLatestTest.class,
ServerTravelerLatestTest.class,
ServerPageableLatestTest.class,
ServerFieldsFilteringLatestTest.class,
ServerLinksLatestTest.class
})
public class ServerLatestTests {
}