diff --git a/examples/integrations/cdi/pokemons/pom.xml b/examples/integrations/cdi/pokemons/pom.xml
index b4b12ffaf..3fbd0445d 100644
--- a/examples/integrations/cdi/pokemons/pom.xml
+++ b/examples/integrations/cdi/pokemons/pom.xml
@@ -62,6 +62,11 @@
jakarta.transactionjakarta.transaction-api
+
+ io.helidon.logging
+ helidon-logging-jul
+ runtime
+
@@ -133,6 +138,11 @@
+
+ io.helidon.microprofile.testing
+ helidon-microprofile-testing-junit5
+ test
+ org.junit.jupiterjunit-jupiter-api
diff --git a/examples/integrations/cdi/pokemons/src/main/resources/logging.properties b/examples/integrations/cdi/pokemons/src/main/resources/logging.properties
new file mode 100644
index 000000000..ce88d5b14
--- /dev/null
+++ b/examples/integrations/cdi/pokemons/src/main/resources/logging.properties
@@ -0,0 +1,27 @@
+#
+# Copyright (c) 2024 Oracle and/or its affiliates.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+# Example Logging Configuration File
+# For more information see $JAVA_HOME/jre/lib/logging.properties
+
+# Send messages to the console
+handlers=io.helidon.logging.jul.HelidonConsoleHandler
+
+# HelidonConsoleHandler uses a SimpleFormatter subclass that replaces "!thread!" with the current thread
+java.util.logging.SimpleFormatter.format=%1$tY.%1$tm.%1$td %1$tH:%1$tM:%1$tS %4$s %3$s !thread!: %5$s%6$s%n
+
+# Global logging level. Can be overridden by specific loggers
+.level=INFO
diff --git a/examples/integrations/cdi/pokemons/src/test/java/io/helidon/examples/integrations/cdi/pokemon/MainTest.java b/examples/integrations/cdi/pokemons/src/test/java/io/helidon/examples/integrations/cdi/pokemon/MainTest.java
index ec72ed297..f344b6faf 100644
--- a/examples/integrations/cdi/pokemons/src/test/java/io/helidon/examples/integrations/cdi/pokemon/MainTest.java
+++ b/examples/integrations/cdi/pokemons/src/test/java/io/helidon/examples/integrations/cdi/pokemon/MainTest.java
@@ -16,63 +16,45 @@
package io.helidon.examples.integrations.cdi.pokemon;
-import io.helidon.microprofile.server.Server;
+import io.helidon.microprofile.testing.junit5.HelidonTest;
-import jakarta.enterprise.inject.se.SeContainer;
-import jakarta.enterprise.inject.spi.CDI;
import jakarta.json.JsonArray;
-import jakarta.ws.rs.client.Client;
-import jakarta.ws.rs.client.ClientBuilder;
import jakarta.ws.rs.client.Entity;
+import jakarta.ws.rs.client.WebTarget;
import jakarta.ws.rs.core.MediaType;
import jakarta.ws.rs.core.Response;
-import org.junit.jupiter.api.AfterAll;
-import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.is;
+@HelidonTest
class MainTest {
- private static Server server;
- private static Client client;
-
- @BeforeAll
- public static void startTheServer() {
- client = ClientBuilder.newClient();
- server = Server.create().start();
- }
-
- @AfterAll
- static void destroyClass() {
- CDI