| 62 | namespace { |
| 63 | |
| 64 | proton::error err(const string& message) { |
| 65 | return proton::error("connection configuration: " + message); |
| 66 | } |
| 67 | |
| 68 | Value validate(ValueType t, const Value& v, const string& name) { |
| 69 | if (v.type() != t) |
no test coverage detected