Jiabao-Sun commented on code in PR #24483: URL: https://github.com/apache/flink/pull/24483#discussion_r1524256772
########## flink-streaming-java/src/test/java/org/apache/flink/streaming/runtime/partitioner/StreamPartitionerTest.java: ########## @@ -21,33 +21,32 @@ import org.apache.flink.runtime.plugable.SerializationDelegate; import org.apache.flink.streaming.runtime.streamrecord.StreamRecord; import org.apache.flink.util.InstantiationUtil; -import org.apache.flink.util.TestLogger; -import org.junit.Before; -import org.junit.Test; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; import java.io.IOException; -import static org.junit.Assert.assertEquals; +import static org.assertj.core.api.Assertions.assertThat; /** Tests for different {@link StreamPartitioner} implementations. */ -public abstract class StreamPartitionerTest extends TestLogger { +abstract class StreamPartitionerTest { protected final StreamPartitioner<Tuple> streamPartitioner = createPartitioner(); protected final StreamRecord<Tuple> streamRecord = new StreamRecord<>(null); protected final SerializationDelegate<StreamRecord<Tuple>> serializationDelegate = new SerializationDelegate<>(null); - abstract StreamPartitioner<Tuple> createPartitioner(); + protected abstract StreamPartitioner<Tuple> createPartitioner(); Review Comment: Good point! -- 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: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org