5
5
/**
6
6
* This test class run the code for different update sites.
7
7
*/
8
- public class RunTest {
8
+ class RunTest {
9
9
10
10
@ Test
11
- public void run_4_21 () throws Exception {
11
+ void run_4_21 () throws Exception {
12
12
Input input = new Input ()
13
13
.withReleaseName ("2021-09" )
14
14
.withReleaseVersion ("4.21" )
@@ -17,7 +17,7 @@ public void run_4_21() throws Exception {
17
17
}
18
18
19
19
@ Test
20
- public void run_4_20 () throws Exception {
20
+ void run_4_20 () throws Exception {
21
21
Input input = new Input ()
22
22
.withReleaseName ("2021-06" )
23
23
.withReleaseVersion ("4.20" )
@@ -26,7 +26,7 @@ public void run_4_20() throws Exception {
26
26
}
27
27
28
28
@ Test
29
- public void run_4_19 () throws Exception {
29
+ void run_4_19 () throws Exception {
30
30
Input input = new Input ()
31
31
.withReleaseName ("2021-03" )
32
32
.withReleaseVersion ("4.19" )
@@ -35,7 +35,7 @@ public void run_4_19() throws Exception {
35
35
}
36
36
37
37
@ Test
38
- public void run_4_18 () throws Exception {
38
+ void run_4_18 () throws Exception {
39
39
Input input = new Input ()
40
40
.withReleaseName ("2020-12" )
41
41
.withReleaseVersion ("4.18" )
@@ -44,7 +44,7 @@ public void run_4_18() throws Exception {
44
44
}
45
45
46
46
@ Test
47
- public void run_4_17 () throws Exception {
47
+ void run_4_17 () throws Exception {
48
48
Input input = new Input ()
49
49
.withReleaseName ("2020-09" )
50
50
.withReleaseVersion ("4.17" )
@@ -53,7 +53,7 @@ public void run_4_17() throws Exception {
53
53
}
54
54
55
55
@ Test
56
- public void run_4_16 () throws Exception {
56
+ void run_4_16 () throws Exception {
57
57
Input input = new Input ()
58
58
.withReleaseName ("2020-06" )
59
59
.withReleaseVersion ("4.16" )
@@ -62,7 +62,7 @@ public void run_4_16() throws Exception {
62
62
}
63
63
64
64
@ Test
65
- public void run_4_15 () throws Exception {
65
+ void run_4_15 () throws Exception {
66
66
Input input = new Input ()
67
67
.withReleaseName ("2020-03" )
68
68
.withReleaseVersion ("4.15" )
@@ -72,7 +72,7 @@ public void run_4_15() throws Exception {
72
72
73
73
// tag::4_14_test[]
74
74
@ Test
75
- public void run_4_14 () throws Exception {
75
+ void run_4_14 () throws Exception {
76
76
Input input = new Input ()
77
77
.withReleaseName ("2019-12" )
78
78
.withReleaseVersion ("4.14" )
@@ -82,7 +82,7 @@ public void run_4_14() throws Exception {
82
82
// end::4_14_test[]
83
83
84
84
@ Test
85
- public void run_4_13 () throws Exception {
85
+ void run_4_13 () throws Exception {
86
86
Input input = new Input ()
87
87
.withReleaseName ("2019-09" )
88
88
.withReleaseVersion ("4.13" )
@@ -91,7 +91,7 @@ public void run_4_13() throws Exception {
91
91
}
92
92
93
93
@ Test
94
- public void run_4_12 () throws Exception {
94
+ void run_4_12 () throws Exception {
95
95
Input input = new Input ()
96
96
.withReleaseName ("2019-06" )
97
97
.withReleaseVersion ("4.12" )
@@ -100,7 +100,7 @@ public void run_4_12() throws Exception {
100
100
}
101
101
102
102
@ Test
103
- public void run_4_11 () throws Exception {
103
+ void run_4_11 () throws Exception {
104
104
Input input = new Input ()
105
105
.withReleaseName ("2019-03" )
106
106
.withReleaseVersion ("4.11" )
@@ -109,7 +109,7 @@ public void run_4_11() throws Exception {
109
109
}
110
110
111
111
@ Test
112
- public void run_4_10 () throws Exception {
112
+ void run_4_10 () throws Exception {
113
113
Input input = new Input ()
114
114
.withReleaseName ("2018-12" )
115
115
.withReleaseVersion ("4.10" )
@@ -118,7 +118,7 @@ public void run_4_10() throws Exception {
118
118
}
119
119
120
120
@ Test
121
- public void run_4_9 () throws Exception {
121
+ void run_4_9 () throws Exception {
122
122
Input input = new Input ()
123
123
.withReleaseName ("2018-09" )
124
124
.withReleaseVersion ("4.9" )
@@ -127,7 +127,7 @@ public void run_4_9() throws Exception {
127
127
}
128
128
129
129
@ Test
130
- public void run_4_8 () throws Exception {
130
+ void run_4_8 () throws Exception {
131
131
Input input = new Input ()
132
132
.withReleaseName ("Photon" )
133
133
.withReleaseVersion ("4.8" )
@@ -136,7 +136,7 @@ public void run_4_8() throws Exception {
136
136
}
137
137
138
138
@ Test
139
- public void run_4_7 () throws Exception {
139
+ void run_4_7 () throws Exception {
140
140
Input input = new Input ()
141
141
.withReleaseName ("Oxygen" )
142
142
.withReleaseVersion ("4.7" )
@@ -145,7 +145,7 @@ public void run_4_7() throws Exception {
145
145
}
146
146
147
147
@ Test
148
- public void run_4_6 () throws Exception {
148
+ void run_4_6 () throws Exception {
149
149
Input input = new Input ()
150
150
.withReleaseName ("Neon" )
151
151
.withReleaseVersion ("4.6" )
0 commit comments