-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#2663 Moving integration tests to "kafka" package
- Loading branch information
1 parent
78e6452
commit 8f26371
Showing
8 changed files
with
10 additions
and
9 deletions.
There are no files selected for viewing
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
2 changes: 1 addition & 1 deletion
2
.../quarkus/it/main/KafkaConsumerITCase.java → ...quarkus/it/kafka/KafkaConsumerITCase.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,4 +1,4 @@ | ||
package io.quarkus.it.main; | ||
package io.quarkus.it.kafka; | ||
|
||
import io.quarkus.test.junit.SubstrateTest; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...io/quarkus/it/main/KafkaConsumerTest.java → ...o/quarkus/it/kafka/KafkaConsumerTest.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,4 +1,4 @@ | ||
package io.quarkus.it.main; | ||
package io.quarkus.it.kafka; | ||
|
||
import java.util.Properties; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
.../quarkus/it/main/KafkaProducerITCase.java → ...quarkus/it/kafka/KafkaProducerITCase.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,4 +1,4 @@ | ||
package io.quarkus.it.main; | ||
package io.quarkus.it.kafka; | ||
|
||
import io.quarkus.test.junit.SubstrateTest; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...io/quarkus/it/main/KafkaProducerTest.java → ...o/quarkus/it/kafka/KafkaProducerTest.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
2 changes: 1 addition & 1 deletion
2
...o/quarkus/it/main/KafkaStreamsITCase.java → .../quarkus/it/kafka/KafkaStreamsITCase.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,4 +1,4 @@ | ||
package io.quarkus.it.main; | ||
package io.quarkus.it.kafka; | ||
|
||
import io.quarkus.test.junit.SubstrateTest; | ||
|
||
|
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
2 changes: 1 addition & 1 deletion
2
...io/quarkus/it/main/KafkaTestResource.java → ...o/quarkus/it/kafka/KafkaTestResource.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,4 +1,4 @@ | ||
package io.quarkus.it.main; | ||
package io.quarkus.it.kafka; | ||
|
||
import java.io.File; | ||
import java.util.Collections; | ||
|