Skip to content

Commit 86892c7

Browse files
committed
[eclipse-iceoryx#690] Add missing test
1 parent d112fbb commit 86892c7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

iceoryx2/tests/client_tests.rs

+4
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,8 @@ mod client {
159159
.create()
160160
.unwrap();
161161

162+
assert_that!(sut.unable_to_deliver_strategy(), eq UnableToDeliverStrategy::Block);
163+
162164
let request = sut.send_copy(123);
163165
assert_that!(request, is_ok);
164166
drop(request);
@@ -197,6 +199,8 @@ mod client {
197199
.create()
198200
.unwrap();
199201

202+
assert_that!(sut.unable_to_deliver_strategy(), eq UnableToDeliverStrategy::DiscardSample);
203+
200204
let request = sut.send_copy(123);
201205
assert_that!(request, is_ok);
202206
let _request = sut.send_copy(456);

0 commit comments

Comments
 (0)