22
22
import com .google .common .collect .ImmutableSet ;
23
23
import org .junit .jupiter .api .Test ;
24
24
25
- class StaticMetaModelBaseAttributesTest extends StaticMetaModelGeneratorTest {
25
+ public class StaticMetaModelBaseAttributesTest extends StaticMetaModelGeneratorTest {
26
26
27
27
@ Test
28
28
void testMetaModelBaseAttributesOfGeneratedProperty () throws IOException {
@@ -40,7 +40,7 @@ void testMetaModelBaseAttributesOfGeneratedProperty() throws IOException {
40
40
}
41
41
42
42
@ Test
43
- void testMetaModelBaseAttributesOfGeneratedPropertyWithAllAttributes () throws IOException {
43
+ public void testMetaModelBaseAttributesOfGeneratedPropertyWithAllAttributes () throws IOException {
44
44
final TestAspect aspect = TestAspect .ASPECT_WITH_PROPERTY_WITH_ALL_BASE_ATTRIBUTES ;
45
45
final StaticClassGenerationResult result = TestContext .generateStaticAspectCode ().apply ( getGenerators ( aspect ) );
46
46
result .assertNumberOfFiles ( 2 );
@@ -60,7 +60,7 @@ void testMetaModelBaseAttributesOfGeneratedPropertyWithAllAttributes() throws IO
60
60
}
61
61
62
62
@ Test
63
- void testMetaModelBaseAttributesOfGeneratedPropertyWithPreferredNames () throws IOException {
63
+ public void testMetaModelBaseAttributesOfGeneratedPropertyWithPreferredNames () throws IOException {
64
64
final TestAspect aspect = TestAspect .ASPECT_WITH_PROPERTY_WITH_PREFERRED_NAMES ;
65
65
final StaticClassGenerationResult result = TestContext .generateStaticAspectCode ().apply ( getGenerators ( aspect ) );
66
66
result .assertNumberOfFiles ( 2 );
@@ -76,7 +76,7 @@ void testMetaModelBaseAttributesOfGeneratedPropertyWithPreferredNames() throws I
76
76
}
77
77
78
78
@ Test
79
- void testMetaModelBaseAttributesOfGeneratedPropertyWithDescriptions () throws IOException {
79
+ public void testMetaModelBaseAttributesOfGeneratedPropertyWithDescriptions () throws IOException {
80
80
final TestAspect aspect = TestAspect .ASPECT_WITH_PROPERTY_WITH_DESCRIPTIONS ;
81
81
final StaticClassGenerationResult result = TestContext .generateStaticAspectCode ()
82
82
.apply ( getGenerators ( aspect ) );
@@ -93,7 +93,7 @@ void testMetaModelBaseAttributesOfGeneratedPropertyWithDescriptions() throws IOE
93
93
}
94
94
95
95
@ Test
96
- void testMetaModelBaseAttributesOfGeneratedPropertyWithSee () throws IOException {
96
+ public void testMetaModelBaseAttributesOfGeneratedPropertyWithSee () throws IOException {
97
97
final TestAspect aspect = TestAspect .ASPECT_WITH_PROPERTY_WITH_SEE ;
98
98
final StaticClassGenerationResult result = TestContext .generateStaticAspectCode ()
99
99
.apply ( getGenerators ( aspect ) );
@@ -110,7 +110,7 @@ void testMetaModelBaseAttributesOfGeneratedPropertyWithSee() throws IOException
110
110
}
111
111
112
112
@ Test
113
- void testGeneratedMetaModelContainsRequiredMethods () throws IOException {
113
+ public void testGeneratedMetaModelContainsRequiredMethods () throws IOException {
114
114
final TestAspect aspect = TestAspect .ASPECT_WITH_BOOLEAN ;
115
115
final StaticClassGenerationResult result = TestContext .generateStaticAspectCode ()
116
116
.apply ( getGenerators ( aspect ) );
@@ -132,7 +132,7 @@ void testGeneratedMetaModelContainsRequiredMethods() throws IOException {
132
132
}
133
133
134
134
@ Test
135
- void testGeneratedMetaModelContainsOptionalMethods () throws IOException {
135
+ public void testGeneratedMetaModelContainsOptionalMethods () throws IOException {
136
136
final TestAspect aspect = TestAspect .ASPECT_WITH_ALL_BASE_ATTRIBUTES ;
137
137
final StaticClassGenerationResult result = TestContext .generateStaticAspectCode ()
138
138
.apply ( getGenerators ( aspect ) );
@@ -173,7 +173,7 @@ void testGeneratedMetaModelContainsOptionalMethods() throws IOException {
173
173
}
174
174
175
175
@ Test
176
- void testGeneratedMetaModelContainsGetPreferredNamesMethod () throws IOException {
176
+ public void testGeneratedMetaModelContainsGetPreferredNamesMethod () throws IOException {
177
177
final TestAspect aspect = TestAspect .ASPECT_WITH_PREFERRED_NAMES ;
178
178
final StaticClassGenerationResult result = TestContext .generateStaticAspectCode ()
179
179
.apply ( getGenerators ( aspect ) );
@@ -204,7 +204,7 @@ void testGeneratedMetaModelContainsGetPreferredNamesMethod() throws IOException
204
204
}
205
205
206
206
@ Test
207
- void testGeneratedMetaModelContainsGetDescriptionsMethod () throws IOException {
207
+ public void testGeneratedMetaModelContainsGetDescriptionsMethod () throws IOException {
208
208
final TestAspect aspect = TestAspect .ASPECT_WITH_DESCRIPTIONS ;
209
209
final StaticClassGenerationResult result = TestContext .generateStaticAspectCode ()
210
210
.apply ( getGenerators ( aspect ) );
@@ -235,7 +235,7 @@ void testGeneratedMetaModelContainsGetDescriptionsMethod() throws IOException {
235
235
}
236
236
237
237
@ Test
238
- void testGeneratedMetaModelContainsGetSeeMethod () throws IOException {
238
+ public void testGeneratedMetaModelContainsGetSeeMethod () throws IOException {
239
239
final TestAspect aspect = TestAspect .ASPECT_WITH_PROPERTY_WITH_SEE ;
240
240
final StaticClassGenerationResult result = TestContext .generateStaticAspectCode ()
241
241
.apply ( getGenerators ( aspect ) );
0 commit comments