Bug 7449: Introduce ClientActorConfig in cds-access-client
[controller.git] / opendaylight / md-sal / cds-access-client / src / test / java / org / opendaylight / controller / cluster / access / client / ActorBehaviorTest.java
index 7431813010bcf633f4002805882254fa0cfad21d..6804b1fc2571fd5217cb7fadcd2e7ba4204ef216 100644 (file)
@@ -189,6 +189,25 @@ public class ActorBehaviorTest {
             return initialBehavior;
         }
 
+        @Override
+        protected ClientActorConfig getClientActorConfig() {
+            return new ClientActorConfig() {
+                @Override
+                public String getTempFileDirectory() {
+                    return null;
+                }
+
+                @Override
+                public int getMaximumMessageSliceSize() {
+                    return 2000000;
+                }
+
+                @Override
+                public int getFileBackedStreamingThreshold() {
+                    return 1000000000;
+                }
+            };
+        }
     }
 
-}
\ No newline at end of file
+}