Sha256: cf7bde79d7fde42d5445c63426fdd0a9f775cc725215328c6a2f039e02413e82

Contents?: true

Size: 763 Bytes

Versions: 4

Compression:

Stored size: 763 Bytes

Contents

/* =========================================================================
    Unity - A Test Framework for C
    ThrowTheSwitch.org
    Copyright (c) 2007-25 Mike Karlesky, Mark VanderVoord, & Greg Williams
    SPDX-License-Identifier: MIT
========================================================================= */

#ifndef CMOCK_H
#define CMOCK_H

int CMockMemFreeFinalCounter = 0;
int mockMock_Init_Counter = 0;
int mockMock_Verify_Counter = 0;
int mockMock_Destroy_Counter = 0;

void CMock_Guts_MemFreeFinal(void) { CMockMemFreeFinalCounter++; }
void mockMock_Init(void)           { mockMock_Init_Counter++;    }
void mockMock_Verify(void)         { mockMock_Verify_Counter++;  }
void mockMock_Destroy(void)        { mockMock_Destroy_Counter++; }

#endif

Version data entries

4 entries across 2 versions & 1 rubygems

Version Path
ceedling-1.0.1 vendor/cmock/vendor/unity/test/testdata/cmock.h
ceedling-1.0.1 vendor/unity/test/testdata/cmock.h
ceedling-1.0.0 vendor/cmock/vendor/unity/test/testdata/cmock.h
ceedling-1.0.0 vendor/unity/test/testdata/cmock.h