BewareMyPower commented on code in PR #21406:
URL: https://github.com/apache/pulsar/pull/21406#discussion_r1696281854


##########
pulsar-broker/src/test/java/org/apache/pulsar/broker/transaction/buffer/utils/TransactionBufferTestImpl.java:
##########
@@ -0,0 +1,36 @@
+package org.apache.pulsar.broker.transaction.buffer.utils;
+
+import lombok.Setter;
+import org.apache.bookkeeper.mledger.Position;
+import org.apache.pulsar.broker.service.persistent.PersistentTopic;
+import org.apache.pulsar.broker.transaction.buffer.impl.TopicTransactionBuffer;
+
+import java.util.concurrent.CompletableFuture;
+
+public class TransactionBufferTestImpl extends TopicTransactionBuffer {
+    @Setter
+    public CompletableFuture<Void> transactionBufferFuture = null;
+    @Setter
+    public State state = null;
+    @Setter
+    public CompletableFuture<Position> publishFuture = null;
+
+    public TransactionBufferTestImpl(PersistentTopic topic) {
+        super(topic);
+    }
+
+    @Override
+    public CompletableFuture<Void> getTransactionBufferFuture() {

Review Comment:
   You can use `Mockito.spy` to customize the behavior of `getXxx()` methods.



-- 
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: commits-unsubscr...@pulsar.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to