| 60 | //--------- |
| 61 | |
| 62 | void TestBCSystem::Process(fw::ComponentRange<TestBCView>& range) |
| 63 | { |
| 64 | size_t idx = 0u; |
| 65 | |
| 66 | for (TestBCView& view : range) |
| 67 | { |
| 68 | REQUIRE(view.b->name == std::to_string(idx)); |
| 69 | REQUIRE(view.c->val == static_cast<uint32>(idx)); |
| 70 | |
| 71 | idx++; |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | |
| 76 | void TestOverwriteSystem::Process(fw::ComponentRange<TestOverwriteSystemView>& range) |
nothing calls this directly
no outgoing calls
no test coverage detected