| 1414 | |
| 1415 | template<class T> |
| 1416 | bool ExprTest::ParseString(const string& str, T* val) { |
| 1417 | istringstream stream(str); |
| 1418 | stream >> *val; |
| 1419 | return !stream.fail(); |
| 1420 | } |
| 1421 | |
| 1422 | template<> |
| 1423 | bool ExprTest::ParseString(const string& str, TimestampValue* val) { |
no test coverage detected