/usr/include/CppUTestExt/MockSupport_c.h is in libcpputest-dev 3.4-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 | /*
* Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of the <organization> nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL <copyright holder> BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef D_MockSupport_c_h
#define D_MockSupport_c_h
#ifdef __cplusplus
extern "C" {
#endif
typedef enum {
MOCKVALUETYPE_INTEGER,
MOCKVALUETYPE_DOUBLE,
MOCKVALUETYPE_STRING,
MOCKVALUETYPE_POINTER,
MOCKVALUETYPE_OBJECT
} MockValueType_c;
typedef struct SMockValue_c
{
MockValueType_c type;
union {
int intValue;
double doubleValue;
const char* stringValue;
void* pointerValue;
void* objectValue;
} value;
} MockValue_c;
typedef struct SMockFunctionCall_c MockFunctionCall_c;
struct SMockFunctionCall_c
{
MockFunctionCall_c* (*withIntParameters)(const char* name, int value);
MockFunctionCall_c* (*withDoubleParameters)(const char* name, double value);
MockFunctionCall_c* (*withStringParameters)(const char* name, const char* value);
MockFunctionCall_c* (*withPointerParameters)(const char* name, void* value);
MockFunctionCall_c* (*withParameterOfType)(const char* type, const char* name, void* value);
MockFunctionCall_c* (*andReturnIntValue)(int value);
MockFunctionCall_c* (*andReturnDoubleValue)(double value);
MockFunctionCall_c* (*andReturnStringValue)(const char* value);
MockFunctionCall_c* (*andReturnPointerValue)(void* value);
MockValue_c (*returnValue)(void);
};
typedef int (*MockTypeEqualFunction_c)(void* object1, void* object2);
typedef char* (*MockTypeValueToStringFunction_c)(void* object1);
typedef struct SMockSupport_c MockSupport_c;
struct SMockSupport_c
{
MockFunctionCall_c* (*expectOneCall)(const char* name);
MockFunctionCall_c* (*actualCall)(const char* name);
MockValue_c (*returnValue)(void);
void (*enable)(void);
void (*disable)(void);
void (*setIntData) (const char* name, int value);
void (*setDoubleData) (const char* name, double value);
void (*setStringData) (const char* name, const char* value);
void (*setPointerData) (const char* name, void* value);
void (*setDataObject) (const char* name, const char* type, void* value);
MockValue_c (*getData)(const char* name);
void (*checkExpectations)(void);
int (*expectedCallsLeft)(void);
void (*clear)(void);
void (*installComparator) (const char* typeName, MockTypeEqualFunction_c isEqual, MockTypeValueToStringFunction_c valueToString);
void (*removeAllComparators)(void);
};
MockSupport_c* mock_c(void);
MockSupport_c* mock_scope_c(const char* scope);
#ifdef __cplusplus
}
#endif
#endif
|