| 84 | } // (anonymous) namespace |
| 85 | |
| 86 | TEST(dds_DCPS_DispatchService, RecursiveDispatchDelta) |
| 87 | { |
| 88 | OpenDDS::DCPS::DispatchService dispatcher(8); |
| 89 | RecursiveTestObjTwo test_obj(dispatcher, 2); |
| 90 | |
| 91 | dispatcher.dispatch(test_obj); |
| 92 | |
| 93 | test_obj.wait(100000u); |
| 94 | test_obj.dispatch_scale_ = 0; |
| 95 | dispatcher.shutdown(); |
| 96 | |
| 97 | EXPECT_GE(test_obj.call_count(), 100000u); |
| 98 | } |
| 99 | |
| 100 | TEST(dds_DCPS_DispatchService, RecursiveDispatchDelta_ImmediateShutdown) |
| 101 | { |
nothing calls this directly
no test coverage detected