#ifndef TESTSUPPORT_H #define TESTSUPPORT_H #include #include #include class TestSupport { public: static std::shared_ptr> read_file(const char * filename); static void compare_files(const char * f1, const char * f2); }; #endif