| 26 | } |
| 27 | |
| 28 | bool canConvertFromJson(JsonVariantConst src, const Date&) { |
| 29 | return src["day"].is<int>() && src["month"].is<int>() && |
| 30 | src["year"].is<int>(); |
| 31 | } |
| 32 | } // namespace |
| 33 | |
| 34 | TEST_CASE("Custom converter with overloading") { |
nothing calls this directly
no outgoing calls
no test coverage detected