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
15extern "C" {
16#endif
17
18int WebRtcDataLogCHelper_TestCreateLog();
19
20int WebRtcDataLogCHelper_TestReturnLog();
21
22int WebRtcDataLogCHelper_TestCombine();
23
24int WebRtcDataLogCHelper_TestAddTable();
25
26int WebRtcDataLogCHelper_TestAddColumn();
27
28int WebRtcDataLogCHelper_TestNextRow();
29
30int WebRtcDataLogCHelper_TestInsertCell_int();
31
32int WebRtcDataLogCHelper_TestInsertArray_int();
33
34int WebRtcDataLogCHelper_TestInsertCell_float();
35
36int WebRtcDataLogCHelper_TestInsertArray_float();
37
38int WebRtcDataLogCHelper_TestInsertCell_double();
39
40int WebRtcDataLogCHelper_TestInsertArray_double();
41
42int WebRtcDataLogCHelper_TestInsertCell_int32();
43
44int WebRtcDataLogCHelper_TestInsertArray_int32();
45
46int WebRtcDataLogCHelper_TestInsertCell_uint32();
47
48int WebRtcDataLogCHelper_TestInsertArray_uint32();
49
50int WebRtcDataLogCHelper_TestInsertCell_int64();
51
52int 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_
59