#include #include "testcase.pb.h" int main(int c, char *argv[]) { TestRepeatedPackedBool::Test msg; write_to_file(msg, "data-empty.pbf"); msg.add_b(true); write_to_file(msg, "data-one.pbf"); msg.add_b(true); msg.add_b(false); msg.add_b(true); write_to_file(msg, "data-many.pbf"); }