From 3a96f7111b79dea97003e88ce546bd2201424810 Mon Sep 17 00:00:00 2001 From: thomas Date: Wed, 21 Jun 2023 22:16:00 +0200 Subject: [PATCH] added class copy notice --- .../testkit/typed/javadsl/Junit5IntegrationExampleTest.java | 2 ++ .../typed/javadsl/LogCapturingExtensionExampleTest.java | 3 +++ 2 files changed, 5 insertions(+) diff --git a/actor-testkit-typed/src/test/java/jdocs/org/apache/pekko/actor/testkit/typed/javadsl/Junit5IntegrationExampleTest.java b/actor-testkit-typed/src/test/java/jdocs/org/apache/pekko/actor/testkit/typed/javadsl/Junit5IntegrationExampleTest.java index a67b75ff431..2c4ccef9dd8 100644 --- a/actor-testkit-typed/src/test/java/jdocs/org/apache/pekko/actor/testkit/typed/javadsl/Junit5IntegrationExampleTest.java +++ b/actor-testkit-typed/src/test/java/jdocs/org/apache/pekko/actor/testkit/typed/javadsl/Junit5IntegrationExampleTest.java @@ -7,6 +7,8 @@ * This file is part of the Apache Pekko project, derived from Akka. */ +// test code copied from JunitIntegrationTest.java + package jdocs.org.apache.pekko.actor.testkit.typed.javadsl; import org.apache.pekko.actor.Address; diff --git a/actor-testkit-typed/src/test/java/jdocs/org/apache/pekko/actor/testkit/typed/javadsl/LogCapturingExtensionExampleTest.java b/actor-testkit-typed/src/test/java/jdocs/org/apache/pekko/actor/testkit/typed/javadsl/LogCapturingExtensionExampleTest.java index 02a1351b5fb..baa5745f9a8 100644 --- a/actor-testkit-typed/src/test/java/jdocs/org/apache/pekko/actor/testkit/typed/javadsl/LogCapturingExtensionExampleTest.java +++ b/actor-testkit-typed/src/test/java/jdocs/org/apache/pekko/actor/testkit/typed/javadsl/LogCapturingExtensionExampleTest.java @@ -11,6 +11,7 @@ package jdocs.org.apache.pekko.actor.testkit.typed.javadsl; // #log-capturing-junit5 + import org.apache.pekko.actor.testkit.typed.javadsl.*; import org.apache.pekko.actor.testkit.typed.javadsl.Junit5TestKitBuilder; import org.apache.pekko.actor.typed.ActorRef; @@ -20,6 +21,8 @@ import static jdocs.org.apache.pekko.actor.testkit.typed.javadsl.AsyncTestingExampleTest.Echo; +// test code copied from LogCapturingExampleTest.java + @DisplayName("Junit5 log capturing") @ExtendWith(TestKitJunit5Extension.class) @ExtendWith(LogCapturingExtension.class)