gabriel-farache commented on code in PR #4094:
URL: 
https://github.com/apache/incubator-kie-kogito-runtimes/pull/4094#discussion_r2581679952


##########
quarkus/extensions/kogito-quarkus-serverless-workflow-otel-extension/kogito-quarkus-serverless-workflow-otel-deployment/src/test/java/org/kie/kogito/quarkus/serverless/workflow/otel/deployment/SonataFlowOtelExtensionStructureTest.java:
##########
@@ -16,21 +16,18 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.kie.kogito.addons.jwt.deployment;
+package org.kie.kogito.quarkus.serverless.workflow.otel.deployment;
 
-import io.quarkus.deployment.annotations.BuildStep;
-import io.quarkus.deployment.builditem.FeatureBuildItem;
+import org.junit.jupiter.api.Test;
 
-/**
- * Quarkus deployment processor for JWT parser functionality
- * The JWT parser work item handlers are discovered via ServiceLoader and 
don't require CDI bean registration
- */
-public class JwtParserProcessor {
+import static org.junit.jupiter.api.Assertions.assertNotNull;
 
-    private static final String FEATURE = "sonataflow-addons-jwt-parser";
+public class SonataFlowOtelExtensionStructureTest {
 
-    @BuildStep
-    FeatureBuildItem feature() {
-        return new FeatureBuildItem(FEATURE);
+    @Test
+    public void shouldLoadProcessorClass() {
+        SonataFlowOtelProcessor processor = new SonataFlowOtelProcessor();
+        assertNotNull(processor);

Review Comment:
   sure why not



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to