git-subtree-dir: third_party/protozero git-subtree-split: d5d8debf1b17c6bb652395957b76cde7787e5377
18 lines
304 B
C++
18 lines
304 B
C++
|
|
#include <testcase.hpp>
|
|
#include "testcase.pb.h"
|
|
|
|
int main(int c, char *argv[]) {
|
|
TestString::Test msg;
|
|
|
|
msg.set_s("");
|
|
write_to_file(msg, "data-empty.pbf");
|
|
|
|
msg.set_s("x");
|
|
write_to_file(msg, "data-one.pbf");
|
|
|
|
msg.set_s("foobar");
|
|
write_to_file(msg, "data-string.pbf");
|
|
}
|
|
|