| 79 | } |
| 80 | |
| 81 | std::tuple<Data::IndexedName, Data::MappedName> createMappedName(const std::string& name) |
| 82 | { |
| 83 | auto elementMap = std::make_shared<Data::ElementMap>(); |
| 84 | cgd().resetElementMap(elementMap); |
| 85 | auto mappedName = Data::MappedName(name.c_str()); |
| 86 | auto indexedName = Data::IndexedName(_complexGeoData.getElementTypes().front(), 1); |
| 87 | elementMap->setElementName(indexedName, mappedName, 0); |
| 88 | return std::make_tuple(indexedName, mappedName); |
| 89 | } |
| 90 | |
| 91 | private: |
| 92 | ConcreteComplexGeoDataForTesting _complexGeoData; |
nothing calls this directly
no test coverage detected