| 60 | } |
| 61 | |
| 62 | void add_internal_relations( |
| 63 | geode::Relationships& relationships, absl::Span< const geode::uuid > uuids ) |
| 64 | { |
| 65 | geode::RelationshipsBuilder builder{ relationships }; |
| 66 | builder.add_internal_relation( |
| 67 | component_id( uuids[2] ), component_id( uuids[0] ) ); |
| 68 | builder.add_internal_relation( |
| 69 | component_id( uuids[5] ), component_id( uuids[1] ) ); |
| 70 | // Repeat last relation to test duplications |
| 71 | builder.add_internal_relation( |
| 72 | component_id( uuids[5] ), component_id( uuids[1] ) ); |
| 73 | } |
| 74 | |
| 75 | void add_items_in_collections( |
| 76 | geode::Relationships& relationships, absl::Span< const geode::uuid > uuids ) |
no test coverage detected