libutil++  1.9.3
 All Classes Functions Variables
test.h
1 /*
2 ** libutil++
3 ** $Id: test.h 1877 2017-04-09 18:12:16Z sella $
4 ** Copyright (c) 2011-2016 Digital Genesis, LLC. All Rights Reserved.
5 ** Released under the LGPL Version 2.1 License.
6 ** http://www.digitalgenesis.com
7 */
8 
9 #ifndef __libutilxx__test_H__
10 #define __libutilxx__test_H__
11 
12 #include "common.h"
13 
14 /* Function definitions. */
15 int main(int argc, char **argv);
16 void testLog(void);
17 void testString(void);
18 void testProcess(void);
19 void testFile(void);
20 void testPath(void);
21 void testLockFile(void);
22 void testInterface(void);
23 void testSocket(void);
24 void testIPAddress(void);
25 void testIPAddressPort(void);
26 void testIPPrefix(void);
27 void testVariant(void);
28 void testException(void);
29 void testDNS(void);
30 void testThreadPool(void);
31 void testPipe(void);
32 void testSocketPair(void);
33 void testSocketTrigger(void);
34 void testRadixTree(void);
35 void testCedarTrie(void);
36 void testMessagePack(void);
37 void testUUID(void);
38 
39 #endif
40 
41 /*
42 ** vim: noet ts=3 sw=3
43 */