-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27686 from zakkak/replace-deprecated-annotations-…
…for-native-tests Replace usages of `@DisabledOnNativeImage` and `@NativeImageTest`
- Loading branch information
Showing
43 changed files
with
101 additions
and
103 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
.../amazon-lambda-example/java/src/native-test/java/org/acme/lambda/LambdaHandlerTestIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...xamples/funqy-amazon-lambda-example/java/src/native-test/java/org/acme/funqy/FunqyIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...y-knative-events-example/java/src/native-test/java/org/acme/funqy/cloudevent/FunqyIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...ion-codestarts/funqy-http-codestart/java/src/native-test/java/org/acme/MyFunctionsIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
package org.acme; | ||
|
||
import io.quarkus.test.junit.NativeImageTest; | ||
import io.quarkus.test.junit.QuarkusIntegrationTest; | ||
|
||
@NativeImageTest | ||
@QuarkusIntegrationTest | ||
public class MyFunctionsIT extends MyFunctionsTest { | ||
// Run the same tests in native | ||
} |
4 changes: 2 additions & 2 deletions
4
...http/maven-archetype/src/main/resources/archetype-resources/src/test/java/GreetingIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
package ${package}; | ||
|
||
import io.quarkus.test.junit.NativeImageTest; | ||
import io.quarkus.test.junit.QuarkusIntegrationTest; | ||
|
||
@NativeImageTest | ||
@QuarkusIntegrationTest | ||
public class GreetingIT extends GreetingTest { | ||
} |
4 changes: 2 additions & 2 deletions
4
...rest/maven-archetype/src/main/resources/archetype-resources/src/test/java/GreetingIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
package ${package}; | ||
|
||
import io.quarkus.test.junit.NativeImageTest; | ||
import io.quarkus.test.junit.QuarkusIntegrationTest; | ||
|
||
@NativeImageTest | ||
@QuarkusIntegrationTest | ||
public class GreetingIT extends GreetingTest { | ||
} |
4 changes: 2 additions & 2 deletions
4
...maven-archetype/src/main/resources/archetype-resources/src/test/java/LambdaHandlerIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
package ${package}; | ||
|
||
import io.quarkus.test.junit.NativeImageTest; | ||
import io.quarkus.test.junit.QuarkusIntegrationTest; | ||
|
||
@NativeImageTest | ||
@QuarkusIntegrationTest | ||
public class LambdaHandlerIT extends LambdaHandlerTest { | ||
} |
4 changes: 2 additions & 2 deletions
4
...ttp-resteasy-reactive/src/test/java/io/quarkus/it/amazon/lambda/AmazonLambdaSimpleIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
package io.quarkus.it.amazon.lambda; | ||
|
||
import io.quarkus.test.junit.NativeImageTest; | ||
import io.quarkus.test.junit.QuarkusIntegrationTest; | ||
|
||
@NativeImageTest | ||
@QuarkusIntegrationTest | ||
public class AmazonLambdaSimpleIT extends AmazonLambdaSimpleTestCase { | ||
} |
4 changes: 2 additions & 2 deletions
4
...-lambda-http-resteasy/src/test/java/io/quarkus/it/amazon/lambda/AmazonLambdaSimpleIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
package io.quarkus.it.amazon.lambda; | ||
|
||
import io.quarkus.test.junit.NativeImageTest; | ||
import io.quarkus.test.junit.QuarkusIntegrationTest; | ||
|
||
@NativeImageTest | ||
@QuarkusIntegrationTest | ||
public class AmazonLambdaSimpleIT extends AmazonLambdaSimpleTestCase { | ||
} |
4 changes: 2 additions & 2 deletions
4
...ts/amazon-lambda-http/src/test/java/io/quarkus/it/amazon/lambda/AmazonLambdaSimpleIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
package io.quarkus.it.amazon.lambda; | ||
|
||
import io.quarkus.test.junit.NativeImageTest; | ||
import io.quarkus.test.junit.QuarkusIntegrationTest; | ||
|
||
@NativeImageTest | ||
@QuarkusIntegrationTest | ||
public class AmazonLambdaSimpleIT extends AmazonLambdaSimpleTestCase { | ||
} |
4 changes: 2 additions & 2 deletions
4
.../amazon-lambda-rest/src/test/java/io/quarkus/it/amazon/lambda/AmazonLambdaV1SimpleIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
package io.quarkus.it.amazon.lambda; | ||
|
||
import io.quarkus.test.junit.NativeImageTest; | ||
import io.quarkus.test.junit.QuarkusIntegrationTest; | ||
|
||
@NativeImageTest | ||
@QuarkusIntegrationTest | ||
public class AmazonLambdaV1SimpleIT extends AmazonLambdaV1SimpleTestCase { | ||
} |
4 changes: 2 additions & 2 deletions
4
...tion-tests/amazon-lambda-s3event/src/test/java/io/quarkus/it/amazon/lambda/S3EventIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
package io.quarkus.it.amazon.lambda; | ||
|
||
import io.quarkus.test.junit.NativeImageTest; | ||
import io.quarkus.test.junit.QuarkusIntegrationTest; | ||
|
||
@NativeImageTest | ||
@QuarkusIntegrationTest | ||
public class S3EventIT extends S3EventTestCase { | ||
} |
4 changes: 2 additions & 2 deletions
4
...lambda-stream-handler/src/test/java/io/quarkus/it/amazon/lambda/AmazonLambdaSimpleIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
package io.quarkus.it.amazon.lambda; | ||
|
||
import io.quarkus.test.junit.NativeImageTest; | ||
import io.quarkus.test.junit.QuarkusIntegrationTest; | ||
|
||
@NativeImageTest | ||
@QuarkusIntegrationTest | ||
public class AmazonLambdaSimpleIT extends AmazonLambdaSimpleTestCase { | ||
} |
4 changes: 2 additions & 2 deletions
4
...n-tests/amazon-lambda/src/test/java/io/quarkus/it/amazon/lambda/AmazonLambdaSimpleIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
package io.quarkus.it.amazon.lambda; | ||
|
||
import io.quarkus.test.junit.NativeImageTest; | ||
import io.quarkus.test.junit.QuarkusIntegrationTest; | ||
|
||
@NativeImageTest | ||
@QuarkusIntegrationTest | ||
public class AmazonLambdaSimpleIT extends AmazonLambdaSimpleTestCase { | ||
} |
4 changes: 2 additions & 2 deletions
4
integration-tests/awt/src/test/java/io/quarkus/awt/it/ImageDecodersIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
package io.quarkus.awt.it; | ||
|
||
import io.quarkus.test.junit.NativeImageTest; | ||
import io.quarkus.test.junit.QuarkusIntegrationTest; | ||
|
||
@NativeImageTest | ||
@QuarkusIntegrationTest | ||
public class ImageDecodersIT extends ImageDecodersTest { | ||
} |
4 changes: 2 additions & 2 deletions
4
integration-tests/awt/src/test/java/io/quarkus/awt/it/ImageEncodersIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
package io.quarkus.awt.it; | ||
|
||
import io.quarkus.test.junit.NativeImageTest; | ||
import io.quarkus.test.junit.QuarkusIntegrationTest; | ||
|
||
@NativeImageTest | ||
@QuarkusIntegrationTest | ||
public class ImageEncodersIT extends ImageEncodersTest { | ||
} |
4 changes: 2 additions & 2 deletions
4
integration-tests/awt/src/test/java/io/quarkus/awt/it/ImageGeometryFontsIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
package io.quarkus.awt.it; | ||
|
||
import io.quarkus.test.junit.NativeImageTest; | ||
import io.quarkus.test.junit.QuarkusIntegrationTest; | ||
|
||
@NativeImageTest | ||
@QuarkusIntegrationTest | ||
public class ImageGeometryFontsIT extends ImageGeometryFontsTest { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
...y/src/it/container-build-jib-with-kafka/src/test/java/org/acme/kafka/KafkaClientTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...hots__/FunqyHttpCodestartTest/testContent/src_test_java_ilove_quark_us_MyFunctionsIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
package ilove.quark.us; | ||
|
||
import io.quarkus.test.junit.NativeImageTest; | ||
import io.quarkus.test.junit.QuarkusIntegrationTest; | ||
|
||
@NativeImageTest | ||
@QuarkusIntegrationTest | ||
public class MyFunctionsIT extends MyFunctionsTest { | ||
// Run the same tests in native | ||
} |
4 changes: 2 additions & 2 deletions
4
...ava-library-module/application/src/native-test/java/org/acme/NativeExampleResourceIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...va-platform-module/application/src/native-test/java/org/acme/NativeExampleResourceIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...java-native-sourceset-module/src/native-test/java/org/acme/ExampleResourceNativeTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
package org.acme; | ||
|
||
import io.quarkus.test.junit.NativeImageTest; | ||
import io.quarkus.test.junit.QuarkusIntegrationTest; | ||
|
||
@NativeImageTest | ||
@QuarkusIntegrationTest | ||
public class ExampleResourceNativeTest extends ExampleResourceTest {} |
4 changes: 2 additions & 2 deletions
4
.../resources/kotlin-grpc-project/src/native-test/kotlin/org/acme/NativeExampleResourceIT.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
package org.acme | ||
|
||
import io.quarkus.test.junit.NativeImageTest | ||
import io.quarkus.test.junit.QuarkusIntegrationTest | ||
|
||
@NativeImageTest | ||
@QuarkusIntegrationTest | ||
class NativeExampleResourceIT : ExampleResourceTest() |
4 changes: 2 additions & 2 deletions
4
...nt-dependency/app/src/native-test/java/io/quarkus/reproducer/NativeExampleResourceIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...module-with-empty-module/modB/src/native-test/java/org/acme/NativeGreetingResourceIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...resources/multi-source-project/src/native-test/kotlin/org/acme/NativeExampleResourceIT.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
package org.acme | ||
|
||
import io.quarkus.test.junit.NativeImageTest | ||
import io.quarkus.test.junit.QuarkusIntegrationTest | ||
|
||
@NativeImageTest | ||
@QuarkusIntegrationTest | ||
class NativeExampleResourceIT : ExampleResourceTest() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.