Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b3f7a1129c8312aca9acec39e14aa2e22b72b433 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/*******************************************************************************
 * Copyright (c) 2011 Red Hat and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     David Green <david.green@tasktop.com> - initial contribution
 *     Christian Trutz <christian.trutz@gmail.com> - initial contribution
 *     Chris Aniszczyk <caniszczyk@gmail.com> - initial contribution
 *******************************************************************************/
package org.eclipse.egit.github.core.tests;

import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;

/**
 * All headless unit tests of GitHub Java API
 */
@RunWith(Suite.class)
@SuiteClasses({ ApplicationTest.class, //
		AuthorizationTest.class, //
		BlobTest.class, //
		BreeSmokeTest.class, //
		CollaboratorServiceTest.class, //
		CommentTest.class, //
		CommitCommentPayloadTest.class, //
		CommitCommentTest.class, //
		CommitFileTest.class, //
		CommitServiceTest.class, //
		CommitStatsTest.class, //
		CommitStatusTest.class, //
		CommitTest.class, //
		CommitUserTest.class, //
		ContentsServiceTest.class, //
		ContributorTest.class, //
		CreatePayloadTest.class, //
		DataServiceTest.class, //
		DateFormatterTest.class, //
		DateUtilsTest.class, //
		DeletePayloadTest.class, //
		DeployKeyServiceTest.class, //
		DownloadPayloadTest.class, //
		DownloadResourceTest.class, //
		DownloadServiceTest.class, //
		DownloadTest.class, //
		EncodingUtilsTest.class, //
		EventFormatterTest.class, //
		EventPayloadTest.class, //
		EventRepositoryTest.class, //
		EventServiceTest.class, //
		EventTest.class, //
		FieldErrorTest.class, //
		FollowPayloadTest.class, //
		ForkApplyPayloadTest.class, //
		ForkPayloadTest.class, //
		GistChangeStatusTest.class, //
		GistFileTest.class, //
		GistPayloadTest.class, //
		GistRevisionTest.class, //
		GistServiceTest.class, //
		GistTest.class, //
		GitHubClientTest.class, //
		GollumPageTest.class, //
		GollumPayloadTest.class, //
		GsonUtilsTest.class, //
		IdTest.class, //
		IssueCommentPayloadTest.class, //
		IssueEventTest.class, //
		IssueServiceTest.class, //
		IssueTest.class, //
		IssuesPayloadTest.class, //
		KeyTest.class, //
		LabelComparatorTest.class, //
		LabelServiceTest.class, //
		LabelTest.class, //
		LanguagesTest.class, //
		MarkdownServiceTest.class, //
		MemberPayloadTest.class, //
		MergeStatusTest.class, //
		MilestoneComparatorTest.class, //
		MilestoneServiceTest.class, //
		MilestoneTest.class, //
		OAuthServiceTest.class, //
		OrganizationServiceTest.class, //
		PagedRequestTest.class, //
		PullRequestMarkerTest.class, //
		PullRequestPayloadTest.class, //
		PullRequestReviewCommentPayloadTest.class, //
		PullRequestServiceTest.class, //
		PullRequestTest.class, //
		PushPayloadTest.class, //
		ReferenceTest.class, //
		RepositoryBranchTest.class, //
		RepositoryCommitCompareTest.class, //
		RepositoryCommitTest.class, //
		RepositoryContentsTest.class, //
		RepositoryHookResponseTest.class, //
		RepositoryHookTest.class, //
		RepositoryIdTest.class, //
		RepositoryIssueTest.class, //
		RepositoryServiceTest.class, //
		RepositoryTagTest.class, //
		RepositoryTest.class, //
		RequestErrorTest.class, //
		RequestExceptionTest.class, //
		SearchIssueTest.class, //
		SearchRepositoryTest.class, //
		ShaResourceTest.class, //
		StargazerServiceTest.class, //
		TagTest.class, //
		TeamAddPayloadTest.class, //
		TeamServiceTest.class, //
		TeamTest.class, //
		TreeEntryTest.class, //
		TreeTest.class, //
		TypedResourceTest.class, //
		UrlUtilsTest.class, //
		UserPlanTest.class, //
		UserServiceTest.class, //
		UserTest.class, //
		WatchPayloadTest.class, //
})
public class AllHeadlessTests {

}

Back to the top