/******************************************************************************* * Copyright (c) 2011 GitHub Inc. * 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: * Kevin Sawicki (GitHub Inc.) - initial API and implementation *******************************************************************************/ package org.eclipse.egit.github.core.tests.live; import org.junit.runner.RunWith; import org.junit.runners.Suite; import org.junit.runners.Suite.SuiteClasses; /** * All tests against a live GitHub instance. */ @RunWith(Suite.class) @SuiteClasses({ CollaboratorTest.class, CommitTest.class, DataTest.class, DeployKeyTest.class, EventTest.class, GistTest.class, IssueTest.class, LabelTest.class, LiveTest.class, MilestoneTest.class, OrganizationTest.class, PullRequestTest.class, RepositoryTest.class, TeamTest.class, UserTest.class, WatcherTest.class }) public class LiveTests { }