/******************************************************************************* * Copyright (c) 2011, 2017 IBM Corporation and others. * 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: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.orion.server.tests.servlets.site; import org.junit.runner.RunWith; import org.junit.runners.Suite; import org.junit.runners.Suite.SuiteClasses; /** * Runs all automated server tests for site configuration/hosting support. */ @RunWith(Suite.class) @SuiteClasses({SiteHostingServiceTest.class, SiteTest.class/*, HostingTest.class*/}) public class AllSiteTests { //goofy junit4, no class body needed }