20 lines
172 B
C++
20 lines
172 B
C++
|
#include <iostream>
|
||
|
#include "Test.h"
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
int main() {
|
||
|
Parser_Test();
|
||
|
|
||
|
Log_Test();
|
||
|
|
||
|
Udp_Test();
|
||
|
|
||
|
Tcp_Test();
|
||
|
|
||
|
Serial_Test();
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|