blob: 15c3402608d4778997ba57b9d51fc5addf9f6031 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010-2012 Oracle. 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:
* dclarke - EclipseLink 2.3 - MySports Demo Bug 344608
******************************************************************************/
package eclipselink.example.mysports.admin.test;
import eclipselink.example.mysports.admin.test.style.CreateStyles;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
/**
* @author dclarke
* @since EclipseLink 2.3.0
*/
@RunWith(Suite.class)
@SuiteClasses({ CreateDatabase.class,
VerifyModelAndMappings.class,
CreateHostEnvironments.class,
CreateLeagues.class,
CreateStyles.class,
eclipselink.example.mysports.admin.test.services.glassfish.AllTests.class,
})
public class AllTests {
}