| 122 | TEST_CASE("Stringifier / Adaptors") { |
| 123 | |
| 124 | class CustomContainerAdaptor { |
| 125 | public: |
| 126 | using container_type = std::tuple<std::string, std::string>; |
| 127 | |
| 128 | CustomContainerAdaptor(container_type&& container) : c(container) {} |
| 129 | |
| 130 | protected: |
| 131 | container_type c; |
| 132 | }; |
| 133 | |
| 134 | const auto dq = std::deque{1, 2, 3}; |
| 135 | const auto tp = std::tuple{"lorem", "ipsum"}; |
nothing calls this directly
no outgoing calls
no test coverage detected