Skip to content

Commit 6548925

Browse files
committed
Test stubs.
1 parent 0539e6c commit 6548925

File tree

7 files changed

+121
-25
lines changed

7 files changed

+121
-25
lines changed

core/src/main/java/com/github/api/v2/services/util/Base64.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1359,7 +1359,7 @@ public static Object decodeToObject(
13591359
@Override
13601360
public Class<?> resolveClass(java.io.ObjectStreamClass streamClass)
13611361
throws java.io.IOException, ClassNotFoundException {
1362-
Class c = Class.forName(streamClass.getName(), false, loader);
1362+
Class<?> c = Class.forName(streamClass.getName(), false, loader);
13631363
if( c == null ){
13641364
return super.resolveClass(streamClass);
13651365
} else {

core/src/test/java/com/github/api/v2/services/GistServiceTest.java

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
import org.junit.Test;
99

1010
import com.github.api.v2.schema.Gist;
11+
import com.github.api.v2.services.constant.TestConstants;
1112

1213
public class GistServiceTest extends BaseGitHubServiceTest {
1314
private GistService service;
@@ -26,19 +27,23 @@ public void tearDown() throws Exception {
2627

2728
@Test
2829
public void testGetGist() {
29-
Gist gist = service.getGist("");
30+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Gist Id."), TestConstants.TEST_GIST_ID);
31+
Gist gist = service.getGist(TestConstants.TEST_GIST_ID);
3032
assertNotNull("Gist cannot be null", gist);
3133
}
3234

3335
@Test
3436
public void testGetGistContent() {
35-
InputStream gistContent = service.getGistContent("", "");
37+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Gist Id."), TestConstants.TEST_GIST_ID);
38+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Gist File."), TestConstants.TEST_GIST_FILE);
39+
InputStream gistContent = service.getGistContent(TestConstants.TEST_GIST_ID, "");
3640
assertNotNullOrEmpty("Gist content cannot be null or empty", convertStreamToString(gistContent));
3741
}
3842

3943
@Test
4044
public void testGetUserGists() {
41-
List<Gist> gists = service.getUserGists("");
45+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Username."), TestConstants.TEST_USER_NAME);
46+
List<Gist> gists = service.getUserGists(TestConstants.TEST_USER_NAME);
4247
assertNotNullOrEmpty("Gists cannot be null or empty.", gists);
4348
}
4449
}

core/src/test/java/com/github/api/v2/services/IssueServiceTest.java

Lines changed: 54 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
import com.github.api.v2.schema.Comment;
1010
import com.github.api.v2.schema.Issue;
11+
import com.github.api.v2.services.constant.TestConstants;
1112

1213
public class IssueServiceTest extends BaseGitHubServiceTest {
1314
private IssueService service;
@@ -26,67 +27,107 @@ public void tearDown() throws Exception {
2627

2728
@Test
2829
public void testAddComment() {
29-
service.addComment("", "", 1, "");
30+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Username."), TestConstants.TEST_USER_NAME);
31+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Repository."), TestConstants.TEST_REPOSITORY_NAME);
32+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Issue No."), TestConstants.TEST_ISSUE_NUMBER);
33+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Comment."), TestConstants.TEST_ISSUE_COMMENT);
34+
service.addComment(TestConstants.TEST_USER_NAME, TestConstants.TEST_REPOSITORY_NAME, Integer.parseInt(TestConstants.TEST_ISSUE_NUMBER), TestConstants.TEST_ISSUE_COMMENT);
3035
}
3136

3237
@Test
3338
public void testAddLabel() {
34-
service.addLabel("", "", 1, "");
39+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Username."), TestConstants.TEST_USER_NAME);
40+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Repository."), TestConstants.TEST_REPOSITORY_NAME);
41+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Issue No."), TestConstants.TEST_ISSUE_NUMBER);
42+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Label."), TestConstants.TEST_ISSUE_LABEL);
43+
service.addLabel(TestConstants.TEST_USER_NAME, TestConstants.TEST_REPOSITORY_NAME, Integer.parseInt(TestConstants.TEST_ISSUE_NUMBER), TestConstants.TEST_ISSUE_LABEL);
3544
}
3645

3746
@Test
3847
public void testCloseIssue() {
39-
service.closeIssue("", "", 1);
48+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Username."), TestConstants.TEST_USER_NAME);
49+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Repository."), TestConstants.TEST_REPOSITORY_NAME);
50+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Issue No."), TestConstants.TEST_ISSUE_NUMBER);
51+
service.closeIssue(TestConstants.TEST_USER_NAME, TestConstants.TEST_REPOSITORY_NAME, Integer.parseInt(TestConstants.TEST_ISSUE_NUMBER));
4052
}
4153

4254
@Test
4355
public void testCreateIssue() {
44-
service.createIssue("", "", "", "");
56+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Username."), TestConstants.TEST_USER_NAME);
57+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Repository."), TestConstants.TEST_REPOSITORY_NAME);
58+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Issue Title."), TestConstants.TEST_ISSUE_TITLE);
59+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Issue Body."), TestConstants.TEST_ISSUE_BODY);
60+
service.createIssue(TestConstants.TEST_USER_NAME, TestConstants.TEST_REPOSITORY_NAME, TestConstants.TEST_ISSUE_TITLE, TestConstants.TEST_ISSUE_BODY);
4561
}
4662

4763
@Test
4864
public void testGetIssue() {
49-
Issue issue = service.getIssue("", "", 1);
65+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Username."), TestConstants.TEST_USER_NAME);
66+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Repository."), TestConstants.TEST_REPOSITORY_NAME);
67+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Issue No."), TestConstants.TEST_ISSUE_NUMBER);
68+
Issue issue = service.getIssue(TestConstants.TEST_USER_NAME, TestConstants.TEST_REPOSITORY_NAME, Integer.parseInt(TestConstants.TEST_ISSUE_NUMBER));
5069
assertNotNull("Issue cannot be null.", issue);
5170
}
5271

5372
@Test
5473
public void testGetIssueComments() {
55-
List<Comment> issueComments = service.getIssueComments("", "", 1);
74+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Username."), TestConstants.TEST_USER_NAME);
75+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Repository."), TestConstants.TEST_REPOSITORY_NAME);
76+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Issue No."), TestConstants.TEST_ISSUE_NUMBER);
77+
List<Comment> issueComments = service.getIssueComments(TestConstants.TEST_USER_NAME, TestConstants.TEST_REPOSITORY_NAME, Integer.parseInt(TestConstants.TEST_ISSUE_NUMBER));
5678
assertNotNullOrEmpty("Issue comments cannot be null or empty.", issueComments);
5779
}
5880

5981
@Test
6082
public void testGetIssueLabels() {
61-
List<String> issueLabels = service.getIssueLabels("", "");
83+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Username."), TestConstants.TEST_USER_NAME);
84+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Repository."), TestConstants.TEST_REPOSITORY_NAME);
85+
List<String> issueLabels = service.getIssueLabels(TestConstants.TEST_USER_NAME, TestConstants.TEST_REPOSITORY_NAME);
6286
assertNotNullOrEmpty("Issue labels should not be null or empty.", issueLabels);
6387
}
6488

6589
@Test
6690
public void testGetIssues() {
67-
List<Issue> issues = service.getIssues("", "", Issue.State.OPEN);
91+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Username."), TestConstants.TEST_USER_NAME);
92+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Repository."), TestConstants.TEST_REPOSITORY_NAME);
93+
List<Issue> issues = service.getIssues(TestConstants.TEST_USER_NAME, TestConstants.TEST_REPOSITORY_NAME, Issue.State.OPEN);
6894
assertNotNullOrEmpty("Issues cannot be null or empty.", issues);
6995
}
7096

7197
@Test
7298
public void testRemoveLabel() {
73-
List<String> labels = service.removeLabel("", "", 1, "");
74-
assertFalse("Label should not be in the list.", labels.contains(""));
99+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Username."), TestConstants.TEST_USER_NAME);
100+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Repository."), TestConstants.TEST_REPOSITORY_NAME);
101+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Issue No."), TestConstants.TEST_ISSUE_NUMBER);
102+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Label."), TestConstants.TEST_ISSUE_LABEL);
103+
List<String> labels = service.removeLabel(TestConstants.TEST_USER_NAME, TestConstants.TEST_REPOSITORY_NAME, Integer.parseInt(TestConstants.TEST_ISSUE_NUMBER), TestConstants.TEST_ISSUE_LABEL);
104+
assertFalse("Label should not be in the list.", labels.contains(TestConstants.TEST_ISSUE_LABEL));
75105
}
76106

77107
@Test
78108
public void testReopenIssue() {
79-
service.reopenIssue("", "", 1);
109+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Username."), TestConstants.TEST_USER_NAME);
110+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Repository."), TestConstants.TEST_REPOSITORY_NAME);
111+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Issue No."), TestConstants.TEST_ISSUE_NUMBER);
112+
service.reopenIssue(TestConstants.TEST_USER_NAME, TestConstants.TEST_REPOSITORY_NAME, Integer.parseInt(TestConstants.TEST_ISSUE_NUMBER));
80113
}
81114

82115
@Test
83116
public void testSearchIssues() {
84-
List<Issue> issues = service.searchIssues("", "", Issue.State.OPEN, "");
117+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Username."), TestConstants.TEST_USER_NAME);
118+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Repository."), TestConstants.TEST_REPOSITORY_NAME);
119+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Query."), TestConstants.TEST_QUERY);
120+
List<Issue> issues = service.searchIssues(TestConstants.TEST_USER_NAME, TestConstants.TEST_REPOSITORY_NAME, Issue.State.OPEN, TestConstants.TEST_QUERY);
85121
assertNotNullOrEmpty("Issues cannot be null or empty.", issues);
86122
}
87123

88124
@Test
89125
public void testUpdateIssue() {
90-
service.updateIssue("", "", 1, "", "");
126+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Username."), TestConstants.TEST_USER_NAME);
127+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Repository."), TestConstants.TEST_REPOSITORY_NAME);
128+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Issue No."), TestConstants.TEST_ISSUE_NUMBER);
129+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Issue Title."), TestConstants.TEST_ISSUE_TITLE);
130+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Issue Body."), TestConstants.TEST_ISSUE_BODY);
131+
service.updateIssue(TestConstants.TEST_USER_NAME, TestConstants.TEST_REPOSITORY_NAME, Integer.parseInt(TestConstants.TEST_ISSUE_NUMBER), TestConstants.TEST_ISSUE_TITLE, TestConstants.TEST_ISSUE_BODY);
91132
}
92133
}

core/src/test/java/com/github/api/v2/services/NetworkServiceTest.java

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
import com.github.api.v2.schema.Commit;
1010
import com.github.api.v2.schema.Network;
11+
import com.github.api.v2.services.constant.TestConstants;
1112

1213
public class NetworkServiceTest extends BaseGitHubServiceTest {
1314
private NetworkService service;
@@ -26,19 +27,27 @@ public void tearDown() throws Exception {
2627

2728
@Test
2829
public void testGetNetworkDataStringStringString() {
29-
List<Commit> commits = service.getNetworkData("", "", "");
30+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Username."), TestConstants.TEST_USER_NAME);
31+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Repository."), TestConstants.TEST_REPOSITORY_NAME);
32+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Network Hash."), TestConstants.TEST_NETWORK_HASH);
33+
List<Commit> commits = service.getNetworkData(TestConstants.TEST_USER_NAME, TestConstants.TEST_REPOSITORY_NAME, TestConstants.TEST_NETWORK_HASH);
3034
assertNotNullOrEmpty("Commits should not be null or empty.", commits);
3135
}
3236

3337
@Test
3438
public void testGetNetworkDataStringStringStringIntInt() {
35-
List<Commit> commits = service.getNetworkData("", "", "", 1, 5);
39+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Username."), TestConstants.TEST_USER_NAME);
40+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Repository."), TestConstants.TEST_REPOSITORY_NAME);
41+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Network Hash."), TestConstants.TEST_NETWORK_HASH);
42+
List<Commit> commits = service.getNetworkData(TestConstants.TEST_USER_NAME, TestConstants.TEST_REPOSITORY_NAME, TestConstants.TEST_NETWORK_HASH, 1, 5);
3643
assertNotNullOrEmpty("Commits should not be null or empty.", commits);
3744
}
3845

3946
@Test
4047
public void testGetNetworkMeta() {
41-
Network networkMeta = service.getNetworkMeta("", "");
48+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Username."), TestConstants.TEST_USER_NAME);
49+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Repository."), TestConstants.TEST_REPOSITORY_NAME);
50+
Network networkMeta = service.getNetworkMeta(TestConstants.TEST_USER_NAME, TestConstants.TEST_REPOSITORY_NAME);
4251
assertNotNull("Network cannot be null", networkMeta);
4352
}
4453

core/src/test/java/com/github/api/v2/services/ObjectServiceTest.java

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
import com.github.api.v2.schema.Blob;
1111
import com.github.api.v2.schema.Tree;
12+
import com.github.api.v2.services.constant.TestConstants;
1213

1314
public class ObjectServiceTest extends BaseGitHubServiceTest {
1415
private ObjectService service;
@@ -27,25 +28,38 @@ public void tearDown() throws Exception {
2728

2829
@Test
2930
public void testGetBlob() {
30-
Blob blob = service.getBlob("", "", "", "");
31+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Username."), TestConstants.TEST_USER_NAME);
32+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Repository."), TestConstants.TEST_REPOSITORY_NAME);
33+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Repository."), TestConstants.TEST_TREE_SHA);
34+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Repository."), TestConstants.TEST_FILE_PATH);
35+
Blob blob = service.getBlob(TestConstants.TEST_USER_NAME, TestConstants.TEST_REPOSITORY_NAME, TestConstants.TEST_TREE_SHA, TestConstants.TEST_FILE_PATH);
3136
assertNotNull("Blob cannot be null or empty", blob);
3237
}
3338

3439
@Test
3540
public void testGetBlobs() {
36-
List<Blob> blobs = service.getBlobs("", "", "");
41+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Username."), TestConstants.TEST_USER_NAME);
42+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Repository."), TestConstants.TEST_REPOSITORY_NAME);
43+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Repository."), TestConstants.TEST_TREE_SHA);
44+
List<Blob> blobs = service.getBlobs(TestConstants.TEST_USER_NAME, TestConstants.TEST_REPOSITORY_NAME, TestConstants.TEST_TREE_SHA);
3745
assertNotNullOrEmpty("Blobs cannot be null or empty", blobs);
3846
}
3947

4048
@Test
4149
public void testGetObjectContent() {
42-
InputStream objectContent = service.getObjectContent("", "", "");
50+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Username."), TestConstants.TEST_USER_NAME);
51+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Repository."), TestConstants.TEST_REPOSITORY_NAME);
52+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Repository."), TestConstants.TEST_TREE_SHA);
53+
InputStream objectContent = service.getObjectContent(TestConstants.TEST_USER_NAME, TestConstants.TEST_REPOSITORY_NAME, TestConstants.TEST_TREE_SHA);
4354
assertNotNullOrEmpty("Object content cannot be null or empty", convertStreamToString(objectContent));
4455
}
4556

4657
@Test
4758
public void testGetTree() {
48-
List<Tree> trees = service.getTree("", "", "");
59+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Username."), TestConstants.TEST_USER_NAME);
60+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Repository."), TestConstants.TEST_REPOSITORY_NAME);
61+
assertNotNullOrEmpty(String.format(RESOURCE_MISSING_MESSAGE, "Test Repository."), TestConstants.TEST_TREE_SHA);
62+
List<Tree> trees = service.getTree(TestConstants.TEST_USER_NAME, TestConstants.TEST_REPOSITORY_NAME, TestConstants.TEST_TREE_SHA);
4963
assertNotNullOrEmpty("Tree cannot be null or empty", trees);
5064
}
5165
}

core/src/test/java/com/github/api/v2/services/constant/TestConstants.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,24 @@ public final class TestConstants {
5454
/** The Constant TEST_REPOSITORY_NAME. */
5555
public static final String TEST_COMMIT_HASH =
5656
testConstants.getProperty("com.github.api.v2.services.testCommitHash");
57+
public static final String TEST_GIST_ID =
58+
testConstants.getProperty("com.github.api.v2.services.testGistId");
59+
public static final String TEST_GIST_FILE =
60+
testConstants.getProperty("com.github.api.v2.services.testGistFile");
61+
public static final String TEST_ISSUE_COMMENT =
62+
testConstants.getProperty("com.github.api.v2.services.testIssueComment");
63+
public static final String TEST_ISSUE_LABEL =
64+
testConstants.getProperty("com.github.api.v2.services.testIssueLabel");
65+
public static final String TEST_ISSUE_TITLE =
66+
testConstants.getProperty("com.github.api.v2.services.testIssueTitle");
67+
public static final String TEST_ISSUE_BODY =
68+
testConstants.getProperty("com.github.api.v2.services.testIssueBody");
69+
public static final String TEST_NETWORK_HASH =
70+
testConstants.getProperty("com.github.api.v2.services.testNetworkHash");
71+
public static final String TEST_TREE_SHA =
72+
testConstants.getProperty("com.github.api.v2.services.testTreeHash");
73+
public static final String TEST_FILE_PATH =
74+
testConstants.getProperty("com.github.api.v2.services.testFilePath");
5775
/**
5876
* Instantiates a new test constants.
5977
*/

core/src/test/resources/com/github/api/v2/services/constant/TestConstants.properties

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,13 @@ com.github.api.v2.services.testUserName=facebook
66
com.github.api.v2.services.testRepositoryName=tornado
77
com.github.api.v2.services.testEmail=nabeelmukhtar@yahoo.com
88
com.github.api.v2.services.testIssueNo=1
9-
com.github.api.v2.services.testCommitHash=7b80c2f4db226d6fa3a7
9+
com.github.api.v2.services.testCommitHash=7b80c2f4db226d6fa3a7
10+
com.github.api.v2.services.testGistId=289179
11+
com.github.api.v2.services.testGistFile=TimeZoneDSTUtil.java
12+
com.github.api.v2.services.testIssueComment=This is a test issue comment.
13+
com.github.api.v2.services.testIssueLabel=bug
14+
com.github.api.v2.services.testIssueTitle=Title of the test issue.
15+
com.github.api.v2.services.testIssueBody=Body of the test issue.
16+
com.github.api.v2.services.testNetworkHash=7b80c2f4db226d6fa3a7f3dfa59277da1d642f91
17+
com.github.api.v2.services.testTreeHash=7b80c2f4db226d6fa3a7
18+
com.github.api.v2.services.testFilePath=

0 commit comments

Comments
 (0)