diff options
Diffstat (limited to 'test/csharp/ReplicationConfigTest.cs')
-rw-r--r-- | test/csharp/ReplicationConfigTest.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/csharp/ReplicationConfigTest.cs b/test/csharp/ReplicationConfigTest.cs index 1ccef9c4..e8e6f38c 100644 --- a/test/csharp/ReplicationConfigTest.cs +++ b/test/csharp/ReplicationConfigTest.cs @@ -1,7 +1,7 @@ /*- * See the file LICENSE for redistribution information. * - * Copyright (c) 2009, 2012 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2009, 2015 Oracle and/or its affiliates. All rights reserved. * */ using System; @@ -49,6 +49,10 @@ namespace CsharpAPITest repConfig.RetransmissionRequest(10, 100); Assert.AreEqual(100, repConfig.RetransmissionRequestMax); Assert.AreEqual(10, repConfig.RetransmissionRequestMin); + + repConfig.RepmgrIncomingQueueMax(123, 456); + Assert.AreEqual(123, repConfig.RepmgrIncomingQueueMaxGBytes); + Assert.AreEqual(456, repConfig.RepmgrIncomingQueueMaxBytes); } [Test] |