We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ad07e4 commit c685608Copy full SHA for c685608
ClientUnitTests/SendReceiveTests.cs
@@ -96,6 +96,13 @@ public void TestSendReceiveStringContent()
96
Assert.AreEqual(0, this.clientRunner.RunReceiver("--address send_receive_string_example --count 1"));
97
}
98
99
+ [Test]
100
+ public void TestSendReceiveHashedContent()
101
+ {
102
+ Assert.AreEqual(0, this.clientRunner.RunSender("--address send_receive_hashed_example --count 1 --msg-content aContent --log-msgs json --msg-content-hashed yes"));
103
+ Assert.AreEqual(0, this.clientRunner.RunReceiver("--address send_receive_hashed_example --count 1 --log-msgs json --msg-content-hashed yes"));
104
+ }
105
+
106
[Test]
107
public void TestDrainEmptyQueue()
108
{
0 commit comments