Add more tests for dump atom/gz

This commit is contained in:
Richard Berger
2021-03-10 13:40:10 -05:00
parent 6b3f0ddd3b
commit a548ea3bca
2 changed files with 177 additions and 3 deletions

View File

@ -70,6 +70,9 @@ static bool file_exists(const std::string &filename)
}
#define ASSERT_FILE_EXISTS(NAME) ASSERT_TRUE(file_exists(NAME))
#define ASSERT_FILE_NOT_EXISTS(NAME) ASSERT_FALSE(file_exists(NAME))
#define ASSERT_FILE_EQUAL(FILE_A, FILE_B) ASSERT_TRUE(equal_lines(FILE_A, FILE_B))
#endif