mirror of
https://github.com/tiennm99/zfoo.git
synced 2026-05-19 15:27:45 +00:00
13 lines
296 B
C++
13 lines
296 B
C++
#include "test/list_test.h"
|
|
#include "test/byte_buffer_test.h"
|
|
#include "test/serialization_test.h"
|
|
|
|
using namespace zfoo;
|
|
using namespace std;
|
|
|
|
int main() {
|
|
list_test::list_all_test();
|
|
byte_buffer_test::byte_buffer_all_test();
|
|
serialization_test::protocol_all_test();
|
|
return 0;
|
|
} |