19
19
import com .synopsys .integration .jira .common .test .TestProperties ;
20
20
import com .synopsys .integration .jira .common .test .TestPropertyKey ;
21
21
22
- public class ProjectServiceTestIT extends JiraCloudParameterizedTestIT {
22
+ class ProjectServiceTestIT extends JiraCloudParameterizedTestIT {
23
23
private final TestProperties testProperties = TestProperties .loadTestProperties ();
24
24
private final String testProjectName = testProperties .getProperty (TestPropertyKey .TEST_JIRA_CLOUD_TEST_PROJECT_NAME );
25
25
26
26
@ ParameterizedTest
27
27
@ MethodSource ("getParameters" )
28
- public void testGetPaginatedProjects (JiraHttpClient jiraHttpClient ) throws Exception {
28
+ void testGetPaginatedProjects (JiraHttpClient jiraHttpClient ) throws Exception {
29
29
JiraCloudServiceTestUtility .validateConfiguration ();
30
30
JiraCloudServiceFactory serviceFactory = JiraCloudServiceTestUtility .createServiceFactory (jiraHttpClient );
31
31
@@ -42,7 +42,7 @@ public void testGetPaginatedProjects(JiraHttpClient jiraHttpClient) throws Excep
42
42
43
43
@ ParameterizedTest
44
44
@ MethodSource ("getParameters" )
45
- public void testGetManyPaginatedProjects (JiraHttpClient jiraHttpClient ) throws Exception {
45
+ void testGetManyPaginatedProjects (JiraHttpClient jiraHttpClient ) throws Exception {
46
46
JiraCloudServiceTestUtility .validateConfiguration ();
47
47
JiraCloudServiceFactory serviceFactory = JiraCloudServiceTestUtility .createServiceFactory (jiraHttpClient );
48
48
@@ -58,7 +58,7 @@ public void testGetManyPaginatedProjects(JiraHttpClient jiraHttpClient) throws E
58
58
59
59
@ ParameterizedTest
60
60
@ MethodSource ("getParameters" )
61
- public void testGetAllProjects (JiraHttpClient jiraHttpClient ) throws Exception {
61
+ void testGetAllProjects (JiraHttpClient jiraHttpClient ) throws Exception {
62
62
JiraCloudServiceTestUtility .validateConfiguration ();
63
63
JiraCloudServiceFactory serviceFactory = JiraCloudServiceTestUtility .createServiceFactory (jiraHttpClient );
64
64
@@ -72,7 +72,7 @@ public void testGetAllProjects(JiraHttpClient jiraHttpClient) throws Exception {
72
72
73
73
@ ParameterizedTest
74
74
@ MethodSource ("getParameters" )
75
- public void testGetProject (JiraHttpClient jiraHttpClient ) throws Exception {
75
+ void testGetProject (JiraHttpClient jiraHttpClient ) throws Exception {
76
76
JiraCloudServiceTestUtility .validateConfiguration ();
77
77
JiraCloudServiceFactory serviceFactory = JiraCloudServiceTestUtility .createServiceFactory (jiraHttpClient );
78
78
@@ -92,7 +92,7 @@ public void testGetProject(JiraHttpClient jiraHttpClient) throws Exception {
92
92
93
93
@ ParameterizedTest
94
94
@ MethodSource ("getParameters" )
95
- public void testGetProjectVersions (JiraHttpClient jiraHttpClient ) throws Exception {
95
+ void testGetProjectVersions (JiraHttpClient jiraHttpClient ) throws Exception {
96
96
JiraCloudServiceTestUtility .validateConfiguration ();
97
97
JiraCloudServiceFactory serviceFactory = JiraCloudServiceTestUtility .createServiceFactory (jiraHttpClient );
98
98
0 commit comments