You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: independent-projects/tools/common/src/test/resources/templates/basic-rest/java/native-test-resource-template.ftl
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
1
package ${package_name};
2
2
3
-
import io.quarkus.test.junit.SubstrateTest;
3
+
import io.quarkus.test.junit.NativeImageTest;
4
4
5
-
@SubstrateTest
5
+
@NativeImageTest
6
6
public class Native${class_name}IT extends ${class_name}Test {
Copy file name to clipboardExpand all lines: integration-tests/test-extension/src/test/java/io/quarkus/it/extension/FinalFieldReflectionInGraalITCase.java
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -7,11 +7,13 @@
7
7
importio.quarkus.test.junit.SubstrateTest;
8
8
importio.restassured.RestAssured;
9
9
10
+
// TODO replace with @NativeImageTest once @SubstrateTest is removed.
11
+
// Use @SubstrateTest for now to ensure backward compatibility.
0 commit comments