LRT13  1.0
 All Classes Namespaces Functions Variables Enumerations Enumerator
NetUnitTest.h
1 #ifndef NET_TEST_H_
2 #define NET_TEST_H_
3 
4 #include <vxWorks.h>
5 #include <sysLib.h>
6 
7 #include "UnitTest.h"
8 
9 #include "../Network/NetPeer.h"
10 #include "../Network/NetBuffer.h"
11 
12 using namespace Network;
13 
14 class NetUnitTest : public UnitTest
15 {
16 public:
17  NetUnitTest();
18  void Run();
19 private:
20  NetPeer* m_conn;
21 };
22 
23 #endif