OLD | NEW |
| (Empty) |
1 /* | |
2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. | |
3 * | |
4 * Use of this source code is governed by a BSD-style license | |
5 * that can be found in the LICENSE file in the root of the source | |
6 * tree. An additional intellectual property rights grant can be found | |
7 * in the file PATENTS. All contributing project authors may | |
8 * be found in the AUTHORS file in the root of the source tree. | |
9 */ | |
10 | |
11 #ifndef SRC_SYSTEM_WRAPPERS_SOURCE_DATA_LOG_C_HELPERS_UNITTEST_H_ | |
12 #define SRC_SYSTEM_WRAPPERS_SOURCE_DATA_LOG_C_HELPERS_UNITTEST_H_ | |
13 | |
14 #ifdef __cplusplus | |
15 extern "C" { | |
16 #endif | |
17 | |
18 int WebRtcDataLogCHelper_TestCreateLog(); | |
19 | |
20 int WebRtcDataLogCHelper_TestReturnLog(); | |
21 | |
22 int WebRtcDataLogCHelper_TestCombine(); | |
23 | |
24 int WebRtcDataLogCHelper_TestAddTable(); | |
25 | |
26 int WebRtcDataLogCHelper_TestAddColumn(); | |
27 | |
28 int WebRtcDataLogCHelper_TestNextRow(); | |
29 | |
30 int WebRtcDataLogCHelper_TestInsertCell_int(); | |
31 | |
32 int WebRtcDataLogCHelper_TestInsertArray_int(); | |
33 | |
34 int WebRtcDataLogCHelper_TestInsertCell_float(); | |
35 | |
36 int WebRtcDataLogCHelper_TestInsertArray_float(); | |
37 | |
38 int WebRtcDataLogCHelper_TestInsertCell_double(); | |
39 | |
40 int WebRtcDataLogCHelper_TestInsertArray_double(); | |
41 | |
42 int WebRtcDataLogCHelper_TestInsertCell_int32(); | |
43 | |
44 int WebRtcDataLogCHelper_TestInsertArray_int32(); | |
45 | |
46 int WebRtcDataLogCHelper_TestInsertCell_uint32(); | |
47 | |
48 int WebRtcDataLogCHelper_TestInsertArray_uint32(); | |
49 | |
50 int WebRtcDataLogCHelper_TestInsertCell_int64(); | |
51 | |
52 int WebRtcDataLogCHelper_TestInsertArray_int64(); | |
53 | |
54 #ifdef __cplusplus | |
55 } // end of extern "C" | |
56 #endif | |
57 | |
58 #endif // SRC_SYSTEM_WRAPPERS_SOURCE_DATA_LOG_C_HELPERS_UNITTEST_H_ | |
OLD | NEW |