Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,5 @@ package-lock.json
.factorypath

# Apache RAT check excludes file
!.rat-excludes
!.rat-excludes
.brokk/

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
import java.util.Arrays;
import java.util.List;

import org.kie.kogito.index.test.quarkus.http.DataIndexInfinispanHttpQuarkusTestResource;
import org.kie.kogito.index.test.quarkus.http.KogitoServiceRandomPortQuarkusHttpTestResource;

import io.quarkus.test.junit.QuarkusTestProfile;
Expand All @@ -30,7 +29,6 @@ public class InfinispanHttpTestProfile implements QuarkusTestProfile {

@Override
public List<TestResourceEntry> testResources() {
return Arrays.asList(new TestResourceEntry(KogitoServiceRandomPortQuarkusHttpTestResource.class),
new TestResourceEntry(DataIndexInfinispanHttpQuarkusTestResource.class));
return Arrays.asList(new TestResourceEntry(KogitoServiceRandomPortQuarkusHttpTestResource.class));
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,12 @@
import java.util.Arrays;
import java.util.List;

import org.kie.kogito.index.test.quarkus.kafka.DataIndexInfinispanQuarkusKafkaTestResource;

import io.quarkus.test.junit.QuarkusTestProfile;

public class InfinispanKafkaTestProfile implements QuarkusTestProfile {

@Override
public List<TestResourceEntry> testResources() {
return Arrays.asList(new TestResourceEntry(KogitoServiceRandomPortQuarkusKafkaTestResource.class),
new TestResourceEntry(DataIndexInfinispanQuarkusKafkaTestResource.class));
return Arrays.asList(new TestResourceEntry(KogitoServiceRandomPortQuarkusKafkaTestResource.class));
}
Comment on lines 26 to 31
Copy link

Copilot AI Feb 4, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

InfinispanKafkaTestProfile no longer provisions any Infinispan-related test resources (it only registers KogitoServiceRandomPortQuarkusKafkaTestResource). The class name is now misleading and the file appears unused in the codebase. Consider either deleting it, or renaming it to reflect what it actually configures (and updating any references if they exist).

Copilot uses AI. Check for mistakes.
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import static java.util.Collections.singletonMap;

/**
* Infinispan spring boot resource that works within the test lifecycle.
* Spring boot resource that works within the test lifecycle.
*
*/
public class JobServiceSpringBootTestResource extends ConditionalSpringBootTestResource<JobServiceContainer> {
Expand Down

This file was deleted.

Loading