| 43 | std::string tests_dir; |
| 44 | |
| 45 | string read(string filename) { |
| 46 | filename = tests_dir+string("/interop/")+filename+string(".amqp"); |
| 47 | ifstream ifs(filename.c_str()); |
| 48 | if (!ifs.good()) FAIL("Can't open " << filename); |
| 49 | return string(istreambuf_iterator<char>(ifs), istreambuf_iterator<char>()); |
| 50 | } |
| 51 | |
| 52 | // Test data ostream operator |
| 53 | void test_data_ostream() { |
no test coverage detected