test[cpp]: compatible field of inside protocol class

This commit is contained in:
godotg
2023-10-15 18:00:42 +08:00
parent 98504cb124
commit aa8e269a16
15 changed files with 2190 additions and 4628 deletions
+6 -13
View File
@@ -6,19 +6,12 @@
using namespace zfoo;
using namespace std;
int main() {
try {
list_test::list_all_test();
byte_buffer_test::byte_buffer_all_test();
serialization_test::protocol_all_test();
list_test::list_all_test();
byte_buffer_test::byte_buffer_all_test();
serialization_test::protocol_all_test();
speed_test::parseObject();
speed_test::singleThreadBenchmarks();
} catch (string &e) {
cout << e << endl;
} catch (...) {
cout << "unknown" << endl;
}
speed_test::parseObject();
speed_test::singleThreadBenchmarks();
return 0;
}
}