File tree Expand file tree Collapse file tree 3 files changed +21
-33
lines changed
src/test/java/org/springframework/data/jpa/repository Expand file tree Collapse file tree 3 files changed +21
-33
lines changed Original file line number Diff line number Diff line change 204
204
</executions >
205
205
</plugin >
206
206
207
- <plugin >
208
- <artifactId >maven-compiler-plugin</artifactId >
209
- <executions >
210
- <execution >
211
- <id >java-test-compile</id >
212
- <phase >test-compile</phase >
213
- <goals >
214
- <goal >testCompile</goal >
215
- </goals >
216
- <configuration >
217
- <parameters >false</parameters >
218
- </configuration >
219
- </execution >
220
- </executions >
221
- </plugin >
222
-
223
207
</plugins >
224
208
</build >
225
209
Original file line number Diff line number Diff line change 162
162
</exclusion >
163
163
</exclusions >
164
164
</dependency >
165
-
165
+
166
166
<dependency >
167
167
<groupId >${hibernate.groupId} .orm</groupId >
168
168
<artifactId >hibernate-jpamodelgen</artifactId >
379
379
</configuration >
380
380
</plugin >
381
381
382
- <plugin >
383
- <artifactId >maven-compiler-plugin</artifactId >
384
- <executions >
385
- <execution >
386
- <id >java-test-compile</id >
387
- <phase >test-compile</phase >
388
- <goals >
389
- <goal >testCompile</goal >
390
- </goals >
391
- <configuration >
392
- <parameters >false</parameters >
393
- </configuration >
394
- </execution >
395
- </executions >
396
- </plugin >
397
-
398
382
<plugin >
399
383
<groupId >org.codehaus.mojo</groupId >
400
384
<artifactId >aspectj-maven-plugin</artifactId >
Original file line number Diff line number Diff line change 15
15
*/
16
16
package org .springframework .data .jpa .repository ;
17
17
18
+ import org .junit .jupiter .api .Disabled ;
19
+ import org .junit .jupiter .api .Test ;
18
20
import org .springframework .context .annotation .ImportResource ;
19
21
import org .springframework .test .context .ContextConfiguration ;
20
22
@@ -29,4 +31,22 @@ class EclipseLinkStoredProcedureIntegrationTests extends StoredProcedureIntegrat
29
31
30
32
@ ImportResource ({ "classpath:infrastructure.xml" , "classpath:eclipselink.xml" })
31
33
static class TestConfig extends Config {}
34
+
35
+ @ Override
36
+ @ Test
37
+ @ Disabled ("EclipseLink parameter name inference breaks the method calls" )
38
+ void shouldExecuteAdHocProcedureWith1InputAnd1OutputParameter () {
39
+ }
40
+
41
+ @ Override
42
+ @ Test
43
+ @ Disabled ("EclipseLink parameter name inference breaks the method calls" )
44
+ void shouldExecuteAdHocProcedureWith1InputAndNoOutputParameter () {
45
+ }
46
+
47
+ @ Override
48
+ @ Test
49
+ @ Disabled ("EclipseLink parameter name inference breaks the method calls" )
50
+ void shouldExecuteAdHocProcedureWith1InputAnd1OutputParameterWithUpdate () {
51
+ }
32
52
}
You can’t perform that action at this time.
0 commit comments