| 1 | /* ========================================== | 
|---|
| 2 | Unity Project - A Test Framework for C | 
|---|
| 3 | Copyright (c) 2007-14 Mike Karlesky, Mark VanderVoord, Greg Williams | 
|---|
| 4 | [Released under MIT License. Please refer to license.txt for details] | 
|---|
| 5 | ========================================== */ | 
|---|
| 6 |  | 
|---|
| 7 | #ifndef UNITY_INTERNALS_H | 
|---|
| 8 | #define UNITY_INTERNALS_H | 
|---|
| 9 |  | 
|---|
| 10 | #ifdef UNITY_INCLUDE_CONFIG_H | 
|---|
| 11 | #include "unity_config.h" | 
|---|
| 12 | #endif | 
|---|
| 13 |  | 
|---|
| 14 | #ifndef UNITY_EXCLUDE_SETJMP_H | 
|---|
| 15 | #include <setjmp.h> | 
|---|
| 16 | #endif | 
|---|
| 17 |  | 
|---|
| 18 | #ifndef UNITY_EXCLUDE_MATH_H | 
|---|
| 19 | #include <math.h> | 
|---|
| 20 | #endif | 
|---|
| 21 |  | 
|---|
| 22 | /* Unity Attempts to Auto-Detect Integer Types | 
|---|
| 23 | * Attempt 1: UINT_MAX, ULONG_MAX in <limits.h>, or default to 32 bits | 
|---|
| 24 | * Attempt 2: UINTPTR_MAX in <stdint.h>, or default to same size as long | 
|---|
| 25 | * The user may override any of these derived constants: | 
|---|
| 26 | * UNITY_INT_WIDTH, UNITY_LONG_WIDTH, UNITY_POINTER_WIDTH */ | 
|---|
| 27 | #ifndef UNITY_EXCLUDE_STDINT_H | 
|---|
| 28 | #include <stdint.h> | 
|---|
| 29 | #endif | 
|---|
| 30 |  | 
|---|
| 31 | #ifndef UNITY_EXCLUDE_LIMITS_H | 
|---|
| 32 | #include <limits.h> | 
|---|
| 33 | #endif | 
|---|
| 34 |  | 
|---|
| 35 | /*------------------------------------------------------- | 
|---|
| 36 | * Guess Widths If Not Specified | 
|---|
| 37 | *-------------------------------------------------------*/ | 
|---|
| 38 |  | 
|---|
| 39 | /* Determine the size of an int, if not already specified. | 
|---|
| 40 | * We cannot use sizeof(int), because it is not yet defined | 
|---|
| 41 | * at this stage in the translation of the C program. | 
|---|
| 42 | * Therefore, infer it from UINT_MAX if possible. */ | 
|---|
| 43 | #ifndef UNITY_INT_WIDTH | 
|---|
| 44 | #ifdef UINT_MAX | 
|---|
| 45 | #if (UINT_MAX == 0xFFFF) | 
|---|
| 46 | #define UNITY_INT_WIDTH (16) | 
|---|
| 47 | #elif (UINT_MAX == 0xFFFFFFFF) | 
|---|
| 48 | #define UNITY_INT_WIDTH (32) | 
|---|
| 49 | #elif (UINT_MAX == 0xFFFFFFFFFFFFFFFF) | 
|---|
| 50 | #define UNITY_INT_WIDTH (64) | 
|---|
| 51 | #endif | 
|---|
| 52 | #else /* Set to default */ | 
|---|
| 53 | #define UNITY_INT_WIDTH (32) | 
|---|
| 54 | #endif /* UINT_MAX */ | 
|---|
| 55 | #endif | 
|---|
| 56 |  | 
|---|
| 57 | /* Determine the size of a long, if not already specified. */ | 
|---|
| 58 | #ifndef UNITY_LONG_WIDTH | 
|---|
| 59 | #ifdef ULONG_MAX | 
|---|
| 60 | #if (ULONG_MAX == 0xFFFF) | 
|---|
| 61 | #define UNITY_LONG_WIDTH (16) | 
|---|
| 62 | #elif (ULONG_MAX == 0xFFFFFFFF) | 
|---|
| 63 | #define UNITY_LONG_WIDTH (32) | 
|---|
| 64 | #elif (ULONG_MAX == 0xFFFFFFFFFFFFFFFF) | 
|---|
| 65 | #define UNITY_LONG_WIDTH (64) | 
|---|
| 66 | #endif | 
|---|
| 67 | #else /* Set to default */ | 
|---|
| 68 | #define UNITY_LONG_WIDTH (32) | 
|---|
| 69 | #endif /* ULONG_MAX */ | 
|---|
| 70 | #endif | 
|---|
| 71 |  | 
|---|
| 72 | /* Determine the size of a pointer, if not already specified. */ | 
|---|
| 73 | #ifndef UNITY_POINTER_WIDTH | 
|---|
| 74 | #ifdef UINTPTR_MAX | 
|---|
| 75 | #if (UINTPTR_MAX <= 0xFFFF) | 
|---|
| 76 | #define UNITY_POINTER_WIDTH (16) | 
|---|
| 77 | #elif (UINTPTR_MAX <= 0xFFFFFFFF) | 
|---|
| 78 | #define UNITY_POINTER_WIDTH (32) | 
|---|
| 79 | #elif (UINTPTR_MAX <= 0xFFFFFFFFFFFFFFFF) | 
|---|
| 80 | #define UNITY_POINTER_WIDTH (64) | 
|---|
| 81 | #endif | 
|---|
| 82 | #else /* Set to default */ | 
|---|
| 83 | #define UNITY_POINTER_WIDTH UNITY_LONG_WIDTH | 
|---|
| 84 | #endif /* UINTPTR_MAX */ | 
|---|
| 85 | #endif | 
|---|
| 86 |  | 
|---|
| 87 | /*------------------------------------------------------- | 
|---|
| 88 | * Int Support (Define types based on detected sizes) | 
|---|
| 89 | *-------------------------------------------------------*/ | 
|---|
| 90 |  | 
|---|
| 91 | #if (UNITY_INT_WIDTH == 32) | 
|---|
| 92 | typedef unsigned char   UNITY_UINT8; | 
|---|
| 93 | typedef unsigned short  UNITY_UINT16; | 
|---|
| 94 | typedef unsigned int    UNITY_UINT32; | 
|---|
| 95 | typedef signed char     UNITY_INT8; | 
|---|
| 96 | typedef signed short    UNITY_INT16; | 
|---|
| 97 | typedef signed int      UNITY_INT32; | 
|---|
| 98 | #elif (UNITY_INT_WIDTH == 16) | 
|---|
| 99 | typedef unsigned char   UNITY_UINT8; | 
|---|
| 100 | typedef unsigned int    UNITY_UINT16; | 
|---|
| 101 | typedef unsigned long   UNITY_UINT32; | 
|---|
| 102 | typedef signed char     UNITY_INT8; | 
|---|
| 103 | typedef signed int      UNITY_INT16; | 
|---|
| 104 | typedef signed long     UNITY_INT32; | 
|---|
| 105 | #else | 
|---|
| 106 | #error Invalid UNITY_INT_WIDTH specified! (16 or 32 are supported) | 
|---|
| 107 | #endif | 
|---|
| 108 |  | 
|---|
| 109 | /*------------------------------------------------------- | 
|---|
| 110 | * 64-bit Support | 
|---|
| 111 | *-------------------------------------------------------*/ | 
|---|
| 112 |  | 
|---|
| 113 | #ifndef UNITY_SUPPORT_64 | 
|---|
| 114 | #if UNITY_LONG_WIDTH == 64 || UNITY_POINTER_WIDTH == 64 | 
|---|
| 115 | #define UNITY_SUPPORT_64 | 
|---|
| 116 | #endif | 
|---|
| 117 | #endif | 
|---|
| 118 |  | 
|---|
| 119 | #ifndef UNITY_SUPPORT_64 | 
|---|
| 120 | /* No 64-bit Support */ | 
|---|
| 121 | typedef UNITY_UINT32 UNITY_UINT; | 
|---|
| 122 | typedef UNITY_INT32 UNITY_INT; | 
|---|
| 123 | #else | 
|---|
| 124 |  | 
|---|
| 125 | /* 64-bit Support */ | 
|---|
| 126 | #if (UNITY_LONG_WIDTH == 32) | 
|---|
| 127 | typedef unsigned long long UNITY_UINT64; | 
|---|
| 128 | typedef signed long long   UNITY_INT64; | 
|---|
| 129 | #elif (UNITY_LONG_WIDTH == 64) | 
|---|
| 130 | typedef unsigned long      UNITY_UINT64; | 
|---|
| 131 | typedef signed long        UNITY_INT64; | 
|---|
| 132 | #else | 
|---|
| 133 | #error Invalid UNITY_LONG_WIDTH specified! (32 or 64 are supported) | 
|---|
| 134 | #endif | 
|---|
| 135 | typedef UNITY_UINT64 UNITY_UINT; | 
|---|
| 136 | typedef UNITY_INT64 UNITY_INT; | 
|---|
| 137 |  | 
|---|
| 138 | #endif | 
|---|
| 139 |  | 
|---|
| 140 | /*------------------------------------------------------- | 
|---|
| 141 | * Pointer Support | 
|---|
| 142 | *-------------------------------------------------------*/ | 
|---|
| 143 |  | 
|---|
| 144 | #if (UNITY_POINTER_WIDTH == 32) | 
|---|
| 145 | #define UNITY_PTR_TO_INT UNITY_INT32 | 
|---|
| 146 | #define UNITY_DISPLAY_STYLE_POINTER UNITY_DISPLAY_STYLE_HEX32 | 
|---|
| 147 | #elif (UNITY_POINTER_WIDTH == 64) | 
|---|
| 148 | #define UNITY_PTR_TO_INT UNITY_INT64 | 
|---|
| 149 | #define UNITY_DISPLAY_STYLE_POINTER UNITY_DISPLAY_STYLE_HEX64 | 
|---|
| 150 | #elif (UNITY_POINTER_WIDTH == 16) | 
|---|
| 151 | #define UNITY_PTR_TO_INT UNITY_INT16 | 
|---|
| 152 | #define UNITY_DISPLAY_STYLE_POINTER UNITY_DISPLAY_STYLE_HEX16 | 
|---|
| 153 | #else | 
|---|
| 154 | #error Invalid UNITY_POINTER_WIDTH specified! (16, 32 or 64 are supported) | 
|---|
| 155 | #endif | 
|---|
| 156 |  | 
|---|
| 157 | #ifndef UNITY_PTR_ATTRIBUTE | 
|---|
| 158 | #define UNITY_PTR_ATTRIBUTE | 
|---|
| 159 | #endif | 
|---|
| 160 |  | 
|---|
| 161 | #ifndef UNITY_INTERNAL_PTR | 
|---|
| 162 | #define UNITY_INTERNAL_PTR UNITY_PTR_ATTRIBUTE const void* | 
|---|
| 163 | #endif | 
|---|
| 164 |  | 
|---|
| 165 | /*------------------------------------------------------- | 
|---|
| 166 | * Float Support | 
|---|
| 167 | *-------------------------------------------------------*/ | 
|---|
| 168 |  | 
|---|
| 169 | #ifdef UNITY_EXCLUDE_FLOAT | 
|---|
| 170 |  | 
|---|
| 171 | /* No Floating Point Support */ | 
|---|
| 172 | #ifndef UNITY_EXCLUDE_DOUBLE | 
|---|
| 173 | #define UNITY_EXCLUDE_DOUBLE /* Remove double when excluding float support */ | 
|---|
| 174 | #endif | 
|---|
| 175 | #ifndef UNITY_EXCLUDE_FLOAT_PRINT | 
|---|
| 176 | #define UNITY_EXCLUDE_FLOAT_PRINT | 
|---|
| 177 | #endif | 
|---|
| 178 |  | 
|---|
| 179 | #else | 
|---|
| 180 |  | 
|---|
| 181 | /* Floating Point Support */ | 
|---|
| 182 | #ifndef UNITY_FLOAT_PRECISION | 
|---|
| 183 | #define UNITY_FLOAT_PRECISION (0.00001f) | 
|---|
| 184 | #endif | 
|---|
| 185 | #ifndef UNITY_FLOAT_TYPE | 
|---|
| 186 | #define UNITY_FLOAT_TYPE float | 
|---|
| 187 | #endif | 
|---|
| 188 | typedef UNITY_FLOAT_TYPE UNITY_FLOAT; | 
|---|
| 189 |  | 
|---|
| 190 | /* isinf & isnan macros should be provided by math.h */ | 
|---|
| 191 | #ifndef isinf | 
|---|
| 192 | /* The value of Inf - Inf is NaN */ | 
|---|
| 193 | #define isinf(n) (isnan((n) - (n)) && !isnan(n)) | 
|---|
| 194 | #endif | 
|---|
| 195 |  | 
|---|
| 196 | #ifndef isnan | 
|---|
| 197 | /* NaN is the only floating point value that does NOT equal itself. | 
|---|
| 198 | * Therefore if n != n, then it is NaN. */ | 
|---|
| 199 | #define isnan(n) ((n != n) ? 1 : 0) | 
|---|
| 200 | #endif | 
|---|
| 201 |  | 
|---|
| 202 | #endif | 
|---|
| 203 |  | 
|---|
| 204 | /*------------------------------------------------------- | 
|---|
| 205 | * Double Float Support | 
|---|
| 206 | *-------------------------------------------------------*/ | 
|---|
| 207 |  | 
|---|
| 208 | /* unlike float, we DON'T include by default */ | 
|---|
| 209 | #if defined(UNITY_EXCLUDE_DOUBLE) || !defined(UNITY_INCLUDE_DOUBLE) | 
|---|
| 210 |  | 
|---|
| 211 | /* No Floating Point Support */ | 
|---|
| 212 | #ifndef UNITY_EXCLUDE_DOUBLE | 
|---|
| 213 | #define UNITY_EXCLUDE_DOUBLE | 
|---|
| 214 | #else | 
|---|
| 215 | #undef UNITY_INCLUDE_DOUBLE | 
|---|
| 216 | #endif | 
|---|
| 217 |  | 
|---|
| 218 | #ifndef UNITY_EXCLUDE_FLOAT | 
|---|
| 219 | #ifndef UNITY_DOUBLE_TYPE | 
|---|
| 220 | #define UNITY_DOUBLE_TYPE double | 
|---|
| 221 | #endif | 
|---|
| 222 | typedef UNITY_FLOAT UNITY_DOUBLE; | 
|---|
| 223 | /* For parameter in UnityPrintFloat(UNITY_DOUBLE), which aliases to double or float */ | 
|---|
| 224 | #endif | 
|---|
| 225 |  | 
|---|
| 226 | #else | 
|---|
| 227 |  | 
|---|
| 228 | /* Double Floating Point Support */ | 
|---|
| 229 | #ifndef UNITY_DOUBLE_PRECISION | 
|---|
| 230 | #define UNITY_DOUBLE_PRECISION (1e-12) | 
|---|
| 231 | #endif | 
|---|
| 232 |  | 
|---|
| 233 | #ifndef UNITY_DOUBLE_TYPE | 
|---|
| 234 | #define UNITY_DOUBLE_TYPE double | 
|---|
| 235 | #endif | 
|---|
| 236 | typedef UNITY_DOUBLE_TYPE UNITY_DOUBLE; | 
|---|
| 237 |  | 
|---|
| 238 | #endif | 
|---|
| 239 |  | 
|---|
| 240 | /*------------------------------------------------------- | 
|---|
| 241 | * Output Method: stdout (DEFAULT) | 
|---|
| 242 | *-------------------------------------------------------*/ | 
|---|
| 243 | #ifndef UNITY_OUTPUT_CHAR | 
|---|
| 244 | /* Default to using putchar, which is defined in stdio.h */ | 
|---|
| 245 | #include <stdio.h> | 
|---|
| 246 | #define UNITY_OUTPUT_CHAR(a) (void)putchar(a) | 
|---|
| 247 | #else | 
|---|
| 248 | /* If defined as something else, make sure we declare it here so it's ready for use */ | 
|---|
| 249 | #ifdef UNITY_OUTPUT_CHAR_HEADER_DECLARATION | 
|---|
| 250 | extern void UNITY_OUTPUT_CHAR_HEADER_DECLARATION; | 
|---|
| 251 | #endif | 
|---|
| 252 | #endif | 
|---|
| 253 |  | 
|---|
| 254 | #ifndef UNITY_OUTPUT_FLUSH | 
|---|
| 255 | #ifdef UNITY_USE_FLUSH_STDOUT | 
|---|
| 256 | /* We want to use the stdout flush utility */ | 
|---|
| 257 | #include <stdio.h> | 
|---|
| 258 | #define UNITY_OUTPUT_FLUSH() (void)fflush(stdout) | 
|---|
| 259 | #else | 
|---|
| 260 | /* We've specified nothing, therefore flush should just be ignored */ | 
|---|
| 261 | #define UNITY_OUTPUT_FLUSH() | 
|---|
| 262 | #endif | 
|---|
| 263 | #else | 
|---|
| 264 | /* We've defined flush as something else, so make sure we declare it here so it's ready for use */ | 
|---|
| 265 | #ifdef UNITY_OUTPUT_FLUSH_HEADER_DECLARATION | 
|---|
| 266 | extern void UNITY_OMIT_OUTPUT_FLUSH_HEADER_DECLARATION; | 
|---|
| 267 | #endif | 
|---|
| 268 | #endif | 
|---|
| 269 |  | 
|---|
| 270 | #ifndef UNITY_OUTPUT_FLUSH | 
|---|
| 271 | #define UNITY_FLUSH_CALL() | 
|---|
| 272 | #else | 
|---|
| 273 | #define UNITY_FLUSH_CALL() UNITY_OUTPUT_FLUSH() | 
|---|
| 274 | #endif | 
|---|
| 275 |  | 
|---|
| 276 | #ifndef UNITY_PRINT_EOL | 
|---|
| 277 | #define UNITY_PRINT_EOL()    UNITY_OUTPUT_CHAR('\n') | 
|---|
| 278 | #endif | 
|---|
| 279 |  | 
|---|
| 280 | #ifndef UNITY_OUTPUT_START | 
|---|
| 281 | #define UNITY_OUTPUT_START() | 
|---|
| 282 | #endif | 
|---|
| 283 |  | 
|---|
| 284 | #ifndef UNITY_OUTPUT_COMPLETE | 
|---|
| 285 | #define UNITY_OUTPUT_COMPLETE() | 
|---|
| 286 | #endif | 
|---|
| 287 |  | 
|---|
| 288 | /*------------------------------------------------------- | 
|---|
| 289 | * Footprint | 
|---|
| 290 | *-------------------------------------------------------*/ | 
|---|
| 291 |  | 
|---|
| 292 | #ifndef UNITY_LINE_TYPE | 
|---|
| 293 | #define UNITY_LINE_TYPE UNITY_UINT | 
|---|
| 294 | #endif | 
|---|
| 295 |  | 
|---|
| 296 | #ifndef UNITY_COUNTER_TYPE | 
|---|
| 297 | #define UNITY_COUNTER_TYPE UNITY_UINT | 
|---|
| 298 | #endif | 
|---|
| 299 |  | 
|---|
| 300 | /*------------------------------------------------------- | 
|---|
| 301 | * Language Features Available | 
|---|
| 302 | *-------------------------------------------------------*/ | 
|---|
| 303 | #if !defined(UNITY_WEAK_ATTRIBUTE) && !defined(UNITY_WEAK_PRAGMA) | 
|---|
| 304 | #   if defined(__GNUC__) || defined(__ghs__) /* __GNUC__ includes clang */ | 
|---|
| 305 | #       if !(defined(__WIN32__) && defined(__clang__)) && !defined(__TMS470__) | 
|---|
| 306 | #           define UNITY_WEAK_ATTRIBUTE __attribute__((weak)) | 
|---|
| 307 | #       endif | 
|---|
| 308 | #   endif | 
|---|
| 309 | #endif | 
|---|
| 310 |  | 
|---|
| 311 | #ifdef UNITY_NO_WEAK | 
|---|
| 312 | #   undef UNITY_WEAK_ATTRIBUTE | 
|---|
| 313 | #   undef UNITY_WEAK_PRAGMA | 
|---|
| 314 | #endif | 
|---|
| 315 |  | 
|---|
| 316 |  | 
|---|
| 317 | /*------------------------------------------------------- | 
|---|
| 318 | * Internal Structs Needed | 
|---|
| 319 | *-------------------------------------------------------*/ | 
|---|
| 320 |  | 
|---|
| 321 | typedef void (*UnityTestFunction)(void); | 
|---|
| 322 |  | 
|---|
| 323 | #define UNITY_DISPLAY_RANGE_INT  (0x10) | 
|---|
| 324 | #define UNITY_DISPLAY_RANGE_UINT (0x20) | 
|---|
| 325 | #define UNITY_DISPLAY_RANGE_HEX  (0x40) | 
|---|
| 326 |  | 
|---|
| 327 | typedef enum | 
|---|
| 328 | { | 
|---|
| 329 | UNITY_DISPLAY_STYLE_INT = sizeof(int)+ UNITY_DISPLAY_RANGE_INT, | 
|---|
| 330 | UNITY_DISPLAY_STYLE_INT8     = 1 + UNITY_DISPLAY_RANGE_INT, | 
|---|
| 331 | UNITY_DISPLAY_STYLE_INT16    = 2 + UNITY_DISPLAY_RANGE_INT, | 
|---|
| 332 | UNITY_DISPLAY_STYLE_INT32    = 4 + UNITY_DISPLAY_RANGE_INT, | 
|---|
| 333 | #ifdef UNITY_SUPPORT_64 | 
|---|
| 334 | UNITY_DISPLAY_STYLE_INT64    = 8 + UNITY_DISPLAY_RANGE_INT, | 
|---|
| 335 | #endif | 
|---|
| 336 |  | 
|---|
| 337 | UNITY_DISPLAY_STYLE_UINT = sizeof(unsigned) + UNITY_DISPLAY_RANGE_UINT, | 
|---|
| 338 | UNITY_DISPLAY_STYLE_UINT8    = 1 + UNITY_DISPLAY_RANGE_UINT, | 
|---|
| 339 | UNITY_DISPLAY_STYLE_UINT16   = 2 + UNITY_DISPLAY_RANGE_UINT, | 
|---|
| 340 | UNITY_DISPLAY_STYLE_UINT32   = 4 + UNITY_DISPLAY_RANGE_UINT, | 
|---|
| 341 | #ifdef UNITY_SUPPORT_64 | 
|---|
| 342 | UNITY_DISPLAY_STYLE_UINT64   = 8 + UNITY_DISPLAY_RANGE_UINT, | 
|---|
| 343 | #endif | 
|---|
| 344 |  | 
|---|
| 345 | UNITY_DISPLAY_STYLE_HEX8     = 1 + UNITY_DISPLAY_RANGE_HEX, | 
|---|
| 346 | UNITY_DISPLAY_STYLE_HEX16    = 2 + UNITY_DISPLAY_RANGE_HEX, | 
|---|
| 347 | UNITY_DISPLAY_STYLE_HEX32    = 4 + UNITY_DISPLAY_RANGE_HEX, | 
|---|
| 348 | #ifdef UNITY_SUPPORT_64 | 
|---|
| 349 | UNITY_DISPLAY_STYLE_HEX64    = 8 + UNITY_DISPLAY_RANGE_HEX, | 
|---|
| 350 | #endif | 
|---|
| 351 |  | 
|---|
| 352 | UNITY_DISPLAY_STYLE_UNKNOWN | 
|---|
| 353 | } UNITY_DISPLAY_STYLE_T; | 
|---|
| 354 |  | 
|---|
| 355 | typedef enum | 
|---|
| 356 | { | 
|---|
| 357 | UNITY_EQUAL_TO         = 1, | 
|---|
| 358 | UNITY_GREATER_THAN     = 2, | 
|---|
| 359 | UNITY_GREATER_OR_EQUAL = 2 + UNITY_EQUAL_TO, | 
|---|
| 360 | UNITY_SMALLER_THAN     = 4, | 
|---|
| 361 | UNITY_SMALLER_OR_EQUAL = 4 + UNITY_EQUAL_TO | 
|---|
| 362 | } UNITY_COMPARISON_T; | 
|---|
| 363 |  | 
|---|
| 364 | #ifndef UNITY_EXCLUDE_FLOAT | 
|---|
| 365 | typedef enum UNITY_FLOAT_TRAIT | 
|---|
| 366 | { | 
|---|
| 367 | UNITY_FLOAT_IS_NOT_INF       = 0, | 
|---|
| 368 | UNITY_FLOAT_IS_INF, | 
|---|
| 369 | UNITY_FLOAT_IS_NOT_NEG_INF, | 
|---|
| 370 | UNITY_FLOAT_IS_NEG_INF, | 
|---|
| 371 | UNITY_FLOAT_IS_NOT_NAN, | 
|---|
| 372 | UNITY_FLOAT_IS_NAN, | 
|---|
| 373 | UNITY_FLOAT_IS_NOT_DET, | 
|---|
| 374 | UNITY_FLOAT_IS_DET, | 
|---|
| 375 | UNITY_FLOAT_INVALID_TRAIT | 
|---|
| 376 | } UNITY_FLOAT_TRAIT_T; | 
|---|
| 377 | #endif | 
|---|
| 378 |  | 
|---|
| 379 | typedef enum | 
|---|
| 380 | { | 
|---|
| 381 | UNITY_ARRAY_TO_VAL = 0, | 
|---|
| 382 | UNITY_ARRAY_TO_ARRAY | 
|---|
| 383 | } UNITY_FLAGS_T; | 
|---|
| 384 |  | 
|---|
| 385 | struct UNITY_STORAGE_T | 
|---|
| 386 | { | 
|---|
| 387 | const char* TestFile; | 
|---|
| 388 | const char* CurrentTestName; | 
|---|
| 389 | #ifndef UNITY_EXCLUDE_DETAILS | 
|---|
| 390 | const char* CurrentDetail1; | 
|---|
| 391 | const char* CurrentDetail2; | 
|---|
| 392 | #endif | 
|---|
| 393 | UNITY_LINE_TYPE CurrentTestLineNumber; | 
|---|
| 394 | UNITY_COUNTER_TYPE NumberOfTests; | 
|---|
| 395 | UNITY_COUNTER_TYPE TestFailures; | 
|---|
| 396 | UNITY_COUNTER_TYPE TestIgnores; | 
|---|
| 397 | UNITY_COUNTER_TYPE CurrentTestFailed; | 
|---|
| 398 | UNITY_COUNTER_TYPE CurrentTestIgnored; | 
|---|
| 399 | #ifndef UNITY_EXCLUDE_SETJMP_H | 
|---|
| 400 | jmp_buf AbortFrame; | 
|---|
| 401 | #endif | 
|---|
| 402 | }; | 
|---|
| 403 |  | 
|---|
| 404 | extern struct UNITY_STORAGE_T Unity; | 
|---|
| 405 |  | 
|---|
| 406 | /*------------------------------------------------------- | 
|---|
| 407 | * Test Suite Management | 
|---|
| 408 | *-------------------------------------------------------*/ | 
|---|
| 409 |  | 
|---|
| 410 | void UnityBegin(const char* filename); | 
|---|
| 411 | int  UnityEnd(void); | 
|---|
| 412 | void UnityConcludeTest(void); | 
|---|
| 413 | void UnityDefaultTestRun(UnityTestFunction Func, const char* FuncName, const int FuncLineNum); | 
|---|
| 414 |  | 
|---|
| 415 | /*------------------------------------------------------- | 
|---|
| 416 | * Details Support | 
|---|
| 417 | *-------------------------------------------------------*/ | 
|---|
| 418 |  | 
|---|
| 419 | #ifdef UNITY_EXCLUDE_DETAILS | 
|---|
| 420 | #define UNITY_CLR_DETAILS() | 
|---|
| 421 | #define UNITY_SET_DETAIL(d1) | 
|---|
| 422 | #define UNITY_SET_DETAILS(d1,d2) | 
|---|
| 423 | #else | 
|---|
| 424 | #define UNITY_CLR_DETAILS()      { Unity.CurrentDetail1 = 0;   Unity.CurrentDetail2 = 0;  } | 
|---|
| 425 | #define UNITY_SET_DETAIL(d1)     { Unity.CurrentDetail1 = d1;  Unity.CurrentDetail2 = 0;  } | 
|---|
| 426 | #define UNITY_SET_DETAILS(d1,d2) { Unity.CurrentDetail1 = d1;  Unity.CurrentDetail2 = d2; } | 
|---|
| 427 |  | 
|---|
| 428 | #ifndef UNITY_DETAIL1_NAME | 
|---|
| 429 | #define UNITY_DETAIL1_NAME "Function" | 
|---|
| 430 | #endif | 
|---|
| 431 |  | 
|---|
| 432 | #ifndef UNITY_DETAIL2_NAME | 
|---|
| 433 | #define UNITY_DETAIL2_NAME "Argument" | 
|---|
| 434 | #endif | 
|---|
| 435 | #endif | 
|---|
| 436 |  | 
|---|
| 437 | /*------------------------------------------------------- | 
|---|
| 438 | * Test Output | 
|---|
| 439 | *-------------------------------------------------------*/ | 
|---|
| 440 |  | 
|---|
| 441 | void UnityPrint(const char* string); | 
|---|
| 442 | void UnityPrintLen(const char* string, const UNITY_UINT32 length); | 
|---|
| 443 | void UnityPrintMask(const UNITY_UINT mask, const UNITY_UINT number); | 
|---|
| 444 | void UnityPrintNumberByStyle(const UNITY_INT number, const UNITY_DISPLAY_STYLE_T style); | 
|---|
| 445 | void UnityPrintNumber(const UNITY_INT number); | 
|---|
| 446 | void UnityPrintNumberUnsigned(const UNITY_UINT number); | 
|---|
| 447 | void UnityPrintNumberHex(const UNITY_UINT number, const char nibbles); | 
|---|
| 448 |  | 
|---|
| 449 | #ifndef UNITY_EXCLUDE_FLOAT_PRINT | 
|---|
| 450 | void UnityPrintFloat(const UNITY_DOUBLE input_number); | 
|---|
| 451 | #endif | 
|---|
| 452 |  | 
|---|
| 453 | /*------------------------------------------------------- | 
|---|
| 454 | * Test Assertion Functions | 
|---|
| 455 | *------------------------------------------------------- | 
|---|
| 456 | *  Use the macros below this section instead of calling | 
|---|
| 457 | *  these directly. The macros have a consistent naming | 
|---|
| 458 | *  convention and will pull in file and line information | 
|---|
| 459 | *  for you. */ | 
|---|
| 460 |  | 
|---|
| 461 | void UnityAssertEqualNumber(const UNITY_INT expected, | 
|---|
| 462 | const UNITY_INT actual, | 
|---|
| 463 | const char* msg, | 
|---|
| 464 | const UNITY_LINE_TYPE lineNumber, | 
|---|
| 465 | const UNITY_DISPLAY_STYLE_T style); | 
|---|
| 466 |  | 
|---|
| 467 | void UnityAssertGreaterOrLessOrEqualNumber(const UNITY_INT threshold, | 
|---|
| 468 | const UNITY_INT actual, | 
|---|
| 469 | const UNITY_COMPARISON_T compare, | 
|---|
| 470 | const char *msg, | 
|---|
| 471 | const UNITY_LINE_TYPE lineNumber, | 
|---|
| 472 | const UNITY_DISPLAY_STYLE_T style); | 
|---|
| 473 |  | 
|---|
| 474 | void UnityAssertEqualIntArray(UNITY_INTERNAL_PTR expected, | 
|---|
| 475 | UNITY_INTERNAL_PTR actual, | 
|---|
| 476 | const UNITY_UINT32 num_elements, | 
|---|
| 477 | const char* msg, | 
|---|
| 478 | const UNITY_LINE_TYPE lineNumber, | 
|---|
| 479 | const UNITY_DISPLAY_STYLE_T style, | 
|---|
| 480 | const UNITY_FLAGS_T flags); | 
|---|
| 481 |  | 
|---|
| 482 | void UnityAssertBits(const UNITY_INT mask, | 
|---|
| 483 | const UNITY_INT expected, | 
|---|
| 484 | const UNITY_INT actual, | 
|---|
| 485 | const char* msg, | 
|---|
| 486 | const UNITY_LINE_TYPE lineNumber); | 
|---|
| 487 |  | 
|---|
| 488 | void UnityAssertEqualString(const char* expected, | 
|---|
| 489 | const char* actual, | 
|---|
| 490 | const char* msg, | 
|---|
| 491 | const UNITY_LINE_TYPE lineNumber); | 
|---|
| 492 |  | 
|---|
| 493 | void UnityAssertEqualStringLen(const char* expected, | 
|---|
| 494 | const char* actual, | 
|---|
| 495 | const UNITY_UINT32 length, | 
|---|
| 496 | const char* msg, | 
|---|
| 497 | const UNITY_LINE_TYPE lineNumber); | 
|---|
| 498 |  | 
|---|
| 499 | void UnityAssertEqualStringArray( UNITY_INTERNAL_PTR expected, | 
|---|
| 500 | const char** actual, | 
|---|
| 501 | const UNITY_UINT32 num_elements, | 
|---|
| 502 | const char* msg, | 
|---|
| 503 | const UNITY_LINE_TYPE lineNumber, | 
|---|
| 504 | const UNITY_FLAGS_T flags); | 
|---|
| 505 |  | 
|---|
| 506 | void UnityAssertEqualMemory( UNITY_INTERNAL_PTR expected, | 
|---|
| 507 | UNITY_INTERNAL_PTR actual, | 
|---|
| 508 | const UNITY_UINT32 length, | 
|---|
| 509 | const UNITY_UINT32 num_elements, | 
|---|
| 510 | const char* msg, | 
|---|
| 511 | const UNITY_LINE_TYPE lineNumber, | 
|---|
| 512 | const UNITY_FLAGS_T flags); | 
|---|
| 513 |  | 
|---|
| 514 | void UnityAssertNumbersWithin(const UNITY_UINT delta, | 
|---|
| 515 | const UNITY_INT expected, | 
|---|
| 516 | const UNITY_INT actual, | 
|---|
| 517 | const char* msg, | 
|---|
| 518 | const UNITY_LINE_TYPE lineNumber, | 
|---|
| 519 | const UNITY_DISPLAY_STYLE_T style); | 
|---|
| 520 |  | 
|---|
| 521 | void UnityFail(const char* message, const UNITY_LINE_TYPE line); | 
|---|
| 522 |  | 
|---|
| 523 | void UnityIgnore(const char* message, const UNITY_LINE_TYPE line); | 
|---|
| 524 |  | 
|---|
| 525 | #ifndef UNITY_EXCLUDE_FLOAT | 
|---|
| 526 | void UnityAssertFloatsWithin(const UNITY_FLOAT delta, | 
|---|
| 527 | const UNITY_FLOAT expected, | 
|---|
| 528 | const UNITY_FLOAT actual, | 
|---|
| 529 | const char* msg, | 
|---|
| 530 | const UNITY_LINE_TYPE lineNumber); | 
|---|
| 531 |  | 
|---|
| 532 | void UnityAssertEqualFloatArray(UNITY_PTR_ATTRIBUTE const UNITY_FLOAT* expected, | 
|---|
| 533 | UNITY_PTR_ATTRIBUTE const UNITY_FLOAT* actual, | 
|---|
| 534 | const UNITY_UINT32 num_elements, | 
|---|
| 535 | const char* msg, | 
|---|
| 536 | const UNITY_LINE_TYPE lineNumber, | 
|---|
| 537 | const UNITY_FLAGS_T flags); | 
|---|
| 538 |  | 
|---|
| 539 | void UnityAssertFloatSpecial(const UNITY_FLOAT actual, | 
|---|
| 540 | const char* msg, | 
|---|
| 541 | const UNITY_LINE_TYPE lineNumber, | 
|---|
| 542 | const UNITY_FLOAT_TRAIT_T style); | 
|---|
| 543 | #endif | 
|---|
| 544 |  | 
|---|
| 545 | #ifndef UNITY_EXCLUDE_DOUBLE | 
|---|
| 546 | void UnityAssertDoublesWithin(const UNITY_DOUBLE delta, | 
|---|
| 547 | const UNITY_DOUBLE expected, | 
|---|
| 548 | const UNITY_DOUBLE actual, | 
|---|
| 549 | const char* msg, | 
|---|
| 550 | const UNITY_LINE_TYPE lineNumber); | 
|---|
| 551 |  | 
|---|
| 552 | void UnityAssertEqualDoubleArray(UNITY_PTR_ATTRIBUTE const UNITY_DOUBLE* expected, | 
|---|
| 553 | UNITY_PTR_ATTRIBUTE const UNITY_DOUBLE* actual, | 
|---|
| 554 | const UNITY_UINT32 num_elements, | 
|---|
| 555 | const char* msg, | 
|---|
| 556 | const UNITY_LINE_TYPE lineNumber, | 
|---|
| 557 | const UNITY_FLAGS_T flags); | 
|---|
| 558 |  | 
|---|
| 559 | void UnityAssertDoubleSpecial(const UNITY_DOUBLE actual, | 
|---|
| 560 | const char* msg, | 
|---|
| 561 | const UNITY_LINE_TYPE lineNumber, | 
|---|
| 562 | const UNITY_FLOAT_TRAIT_T style); | 
|---|
| 563 | #endif | 
|---|
| 564 |  | 
|---|
| 565 | /*------------------------------------------------------- | 
|---|
| 566 | * Helpers | 
|---|
| 567 | *-------------------------------------------------------*/ | 
|---|
| 568 |  | 
|---|
| 569 | UNITY_INTERNAL_PTR UnityNumToPtr(const UNITY_INT num, const UNITY_UINT8 size); | 
|---|
| 570 | #ifndef UNITY_EXCLUDE_FLOAT | 
|---|
| 571 | UNITY_INTERNAL_PTR UnityFloatToPtr(const float num); | 
|---|
| 572 | #endif | 
|---|
| 573 | #ifndef UNITY_EXCLUDE_DOUBLE | 
|---|
| 574 | UNITY_INTERNAL_PTR UnityDoubleToPtr(const double num); | 
|---|
| 575 | #endif | 
|---|
| 576 |  | 
|---|
| 577 | /*------------------------------------------------------- | 
|---|
| 578 | * Error Strings We Might Need | 
|---|
| 579 | *-------------------------------------------------------*/ | 
|---|
| 580 |  | 
|---|
| 581 | extern const char UnityStrErrFloat[]; | 
|---|
| 582 | extern const char UnityStrErrDouble[]; | 
|---|
| 583 | extern const char UnityStrErr64[]; | 
|---|
| 584 |  | 
|---|
| 585 | /*------------------------------------------------------- | 
|---|
| 586 | * Test Running Macros | 
|---|
| 587 | *-------------------------------------------------------*/ | 
|---|
| 588 |  | 
|---|
| 589 | #ifndef UNITY_EXCLUDE_SETJMP_H | 
|---|
| 590 | #define TEST_PROTECT() (setjmp(Unity.AbortFrame) == 0) | 
|---|
| 591 | #define TEST_ABORT() longjmp(Unity.AbortFrame, 1) | 
|---|
| 592 | #else | 
|---|
| 593 | #define TEST_PROTECT() 1 | 
|---|
| 594 | #define TEST_ABORT() return | 
|---|
| 595 | #endif | 
|---|
| 596 |  | 
|---|
| 597 | /* This tricky series of macros gives us an optional line argument to treat it as RUN_TEST(func, num=__LINE__) */ | 
|---|
| 598 | #ifndef RUN_TEST | 
|---|
| 599 | #ifdef __STDC_VERSION__ | 
|---|
| 600 | #if __STDC_VERSION__ >= 199901L | 
|---|
| 601 | #define RUN_TEST(...) UnityDefaultTestRun(RUN_TEST_FIRST(__VA_ARGS__), RUN_TEST_SECOND(__VA_ARGS__)) | 
|---|
| 602 | #define RUN_TEST_FIRST(...) RUN_TEST_FIRST_HELPER(__VA_ARGS__, throwaway) | 
|---|
| 603 | #define RUN_TEST_FIRST_HELPER(first, ...) (first), #first | 
|---|
| 604 | #define RUN_TEST_SECOND(...) RUN_TEST_SECOND_HELPER(__VA_ARGS__, __LINE__, throwaway) | 
|---|
| 605 | #define RUN_TEST_SECOND_HELPER(first, second, ...) (second) | 
|---|
| 606 | #endif | 
|---|
| 607 | #endif | 
|---|
| 608 | #endif | 
|---|
| 609 |  | 
|---|
| 610 | /* If we can't do the tricky version, we'll just have to require them to always include the line number */ | 
|---|
| 611 | #ifndef RUN_TEST | 
|---|
| 612 | #ifdef CMOCK | 
|---|
| 613 | #define RUN_TEST(func, num) UnityDefaultTestRun(func, #func, num) | 
|---|
| 614 | #else | 
|---|
| 615 | #define RUN_TEST(func) UnityDefaultTestRun(func, #func, __LINE__) | 
|---|
| 616 | #endif | 
|---|
| 617 | #endif | 
|---|
| 618 |  | 
|---|
| 619 | #define TEST_LINE_NUM (Unity.CurrentTestLineNumber) | 
|---|
| 620 | #define TEST_IS_IGNORED (Unity.CurrentTestIgnored) | 
|---|
| 621 | #define UNITY_NEW_TEST(a) \ | 
|---|
| 622 | Unity.CurrentTestName = (a); \ | 
|---|
| 623 | Unity.CurrentTestLineNumber = (UNITY_LINE_TYPE)(__LINE__); \ | 
|---|
| 624 | Unity.NumberOfTests++; | 
|---|
| 625 |  | 
|---|
| 626 | #ifndef UNITY_BEGIN | 
|---|
| 627 | #define UNITY_BEGIN() UnityBegin(__FILE__) | 
|---|
| 628 | #endif | 
|---|
| 629 |  | 
|---|
| 630 | #ifndef UNITY_END | 
|---|
| 631 | #define UNITY_END() UnityEnd() | 
|---|
| 632 | #endif | 
|---|
| 633 |  | 
|---|
| 634 | /*----------------------------------------------- | 
|---|
| 635 | * Command Line Argument Support | 
|---|
| 636 | *-----------------------------------------------*/ | 
|---|
| 637 |  | 
|---|
| 638 | #ifdef UNITY_USE_COMMAND_LINE_ARGS | 
|---|
| 639 | int UnityParseOptions(int argc, char** argv); | 
|---|
| 640 | int UnityTestMatches(void); | 
|---|
| 641 | #endif | 
|---|
| 642 |  | 
|---|
| 643 | /*------------------------------------------------------- | 
|---|
| 644 | * Basic Fail and Ignore | 
|---|
| 645 | *-------------------------------------------------------*/ | 
|---|
| 646 |  | 
|---|
| 647 | #define UNITY_TEST_FAIL(line, message)   UnityFail(   (message), (UNITY_LINE_TYPE)(line)) | 
|---|
| 648 | #define UNITY_TEST_IGNORE(line, message) UnityIgnore( (message), (UNITY_LINE_TYPE)(line)) | 
|---|
| 649 |  | 
|---|
| 650 | /*------------------------------------------------------- | 
|---|
| 651 | * Test Asserts | 
|---|
| 652 | *-------------------------------------------------------*/ | 
|---|
| 653 |  | 
|---|
| 654 | #define UNITY_TEST_ASSERT(condition, line, message)                                              if (condition) {} else {UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), (message));} | 
|---|
| 655 | #define UNITY_TEST_ASSERT_NULL(pointer, line, message)                                           UNITY_TEST_ASSERT(((pointer) == NULL),  (UNITY_LINE_TYPE)(line), (message)) | 
|---|
| 656 | #define UNITY_TEST_ASSERT_NOT_NULL(pointer, line, message)                                       UNITY_TEST_ASSERT(((pointer) != NULL),  (UNITY_LINE_TYPE)(line), (message)) | 
|---|
| 657 |  | 
|---|
| 658 | #define UNITY_TEST_ASSERT_EQUAL_INT(expected, actual, line, message)                             UnityAssertEqualNumber((UNITY_INT)(expected), (UNITY_INT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT) | 
|---|
| 659 | #define UNITY_TEST_ASSERT_EQUAL_INT8(expected, actual, line, message)                            UnityAssertEqualNumber((UNITY_INT)(UNITY_INT8 )(expected), (UNITY_INT)(UNITY_INT8 )(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT8) | 
|---|
| 660 | #define UNITY_TEST_ASSERT_EQUAL_INT16(expected, actual, line, message)                           UnityAssertEqualNumber((UNITY_INT)(UNITY_INT16)(expected), (UNITY_INT)(UNITY_INT16)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT16) | 
|---|
| 661 | #define UNITY_TEST_ASSERT_EQUAL_INT32(expected, actual, line, message)                           UnityAssertEqualNumber((UNITY_INT)(UNITY_INT32)(expected), (UNITY_INT)(UNITY_INT32)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT32) | 
|---|
| 662 | #define UNITY_TEST_ASSERT_EQUAL_UINT(expected, actual, line, message)                            UnityAssertEqualNumber((UNITY_INT)(expected), (UNITY_INT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT) | 
|---|
| 663 | #define UNITY_TEST_ASSERT_EQUAL_UINT8(expected, actual, line, message)                           UnityAssertEqualNumber((UNITY_INT)(UNITY_UINT8 )(expected), (UNITY_INT)(UNITY_UINT8 )(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT8) | 
|---|
| 664 | #define UNITY_TEST_ASSERT_EQUAL_UINT16(expected, actual, line, message)                          UnityAssertEqualNumber((UNITY_INT)(UNITY_UINT16)(expected), (UNITY_INT)(UNITY_UINT16)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT16) | 
|---|
| 665 | #define UNITY_TEST_ASSERT_EQUAL_UINT32(expected, actual, line, message)                          UnityAssertEqualNumber((UNITY_INT)(UNITY_UINT32)(expected), (UNITY_INT)(UNITY_UINT32)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT32) | 
|---|
| 666 | #define UNITY_TEST_ASSERT_EQUAL_HEX8(expected, actual, line, message)                            UnityAssertEqualNumber((UNITY_INT)(UNITY_INT8 )(expected), (UNITY_INT)(UNITY_INT8 )(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX8) | 
|---|
| 667 | #define UNITY_TEST_ASSERT_EQUAL_HEX16(expected, actual, line, message)                           UnityAssertEqualNumber((UNITY_INT)(UNITY_INT16)(expected), (UNITY_INT)(UNITY_INT16)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX16) | 
|---|
| 668 | #define UNITY_TEST_ASSERT_EQUAL_HEX32(expected, actual, line, message)                           UnityAssertEqualNumber((UNITY_INT)(UNITY_INT32)(expected), (UNITY_INT)(UNITY_INT32)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX32) | 
|---|
| 669 | #define UNITY_TEST_ASSERT_BITS(mask, expected, actual, line, message)                            UnityAssertBits((UNITY_INT)(mask), (UNITY_INT)(expected), (UNITY_INT)(actual), (message), (UNITY_LINE_TYPE)(line)) | 
|---|
| 670 |  | 
|---|
| 671 | #define UNITY_TEST_ASSERT_GREATER_THAN_INT(threshold, actual, line, message)                     UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold),              (UNITY_INT)(actual),              UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT) | 
|---|
| 672 | #define UNITY_TEST_ASSERT_GREATER_THAN_INT8(threshold, actual, line, message)                    UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT8 )(threshold), (UNITY_INT)(UNITY_INT8 )(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT8) | 
|---|
| 673 | #define UNITY_TEST_ASSERT_GREATER_THAN_INT16(threshold, actual, line, message)                   UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT16)(threshold), (UNITY_INT)(UNITY_INT16)(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT16) | 
|---|
| 674 | #define UNITY_TEST_ASSERT_GREATER_THAN_INT32(threshold, actual, line, message)                   UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT32)(threshold), (UNITY_INT)(UNITY_INT32)(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT32) | 
|---|
| 675 | #define UNITY_TEST_ASSERT_GREATER_THAN_UINT(threshold, actual, line, message)                    UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold),              (UNITY_INT)(actual),              UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT) | 
|---|
| 676 | #define UNITY_TEST_ASSERT_GREATER_THAN_UINT8(threshold, actual, line, message)                   UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT8 )(threshold), (UNITY_INT)(UNITY_UINT8 )(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT8) | 
|---|
| 677 | #define UNITY_TEST_ASSERT_GREATER_THAN_UINT16(threshold, actual, line, message)                  UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT16)(threshold), (UNITY_INT)(UNITY_UINT16)(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT16) | 
|---|
| 678 | #define UNITY_TEST_ASSERT_GREATER_THAN_UINT32(threshold, actual, line, message)                  UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT32)(threshold), (UNITY_INT)(UNITY_UINT32)(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT32) | 
|---|
| 679 | #define UNITY_TEST_ASSERT_GREATER_THAN_HEX8(threshold, actual, line, message)                    UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT8 )(threshold), (UNITY_INT)(UNITY_UINT8 )(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX8) | 
|---|
| 680 | #define UNITY_TEST_ASSERT_GREATER_THAN_HEX16(threshold, actual, line, message)                   UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT16)(threshold), (UNITY_INT)(UNITY_UINT16)(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX16) | 
|---|
| 681 | #define UNITY_TEST_ASSERT_GREATER_THAN_HEX32(threshold, actual, line, message)                   UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT32)(threshold), (UNITY_INT)(UNITY_UINT32)(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX32) | 
|---|
| 682 |  | 
|---|
| 683 | #define UNITY_TEST_ASSERT_SMALLER_THAN_INT(threshold, actual, line, message)                     UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold),              (UNITY_INT)(actual),              UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT) | 
|---|
| 684 | #define UNITY_TEST_ASSERT_SMALLER_THAN_INT8(threshold, actual, line, message)                    UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT8 )(threshold), (UNITY_INT)(UNITY_INT8 )(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT8) | 
|---|
| 685 | #define UNITY_TEST_ASSERT_SMALLER_THAN_INT16(threshold, actual, line, message)                   UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT16)(threshold), (UNITY_INT)(UNITY_INT16)(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT16) | 
|---|
| 686 | #define UNITY_TEST_ASSERT_SMALLER_THAN_INT32(threshold, actual, line, message)                   UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT32)(threshold), (UNITY_INT)(UNITY_INT32)(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT32) | 
|---|
| 687 | #define UNITY_TEST_ASSERT_SMALLER_THAN_UINT(threshold, actual, line, message)                    UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold),              (UNITY_INT)(actual),              UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT) | 
|---|
| 688 | #define UNITY_TEST_ASSERT_SMALLER_THAN_UINT8(threshold, actual, line, message)                   UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT8 )(threshold), (UNITY_INT)(UNITY_UINT8 )(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT8) | 
|---|
| 689 | #define UNITY_TEST_ASSERT_SMALLER_THAN_UINT16(threshold, actual, line, message)                  UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT16)(threshold), (UNITY_INT)(UNITY_UINT16)(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT16) | 
|---|
| 690 | #define UNITY_TEST_ASSERT_SMALLER_THAN_UINT32(threshold, actual, line, message)                  UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT32)(threshold), (UNITY_INT)(UNITY_UINT32)(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT32) | 
|---|
| 691 | #define UNITY_TEST_ASSERT_SMALLER_THAN_HEX8(threshold, actual, line, message)                    UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT8 )(threshold), (UNITY_INT)(UNITY_UINT8 )(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX8) | 
|---|
| 692 | #define UNITY_TEST_ASSERT_SMALLER_THAN_HEX16(threshold, actual, line, message)                   UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT16)(threshold), (UNITY_INT)(UNITY_UINT16)(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX16) | 
|---|
| 693 | #define UNITY_TEST_ASSERT_SMALLER_THAN_HEX32(threshold, actual, line, message)                   UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT32)(threshold), (UNITY_INT)(UNITY_UINT32)(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX32) | 
|---|
| 694 |  | 
|---|
| 695 | #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_INT(threshold, actual, line, message)                 UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold),              (UNITY_INT)(actual),              UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT) | 
|---|
| 696 | #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_INT8(threshold, actual, line, message)                UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT8 )(threshold), (UNITY_INT)(UNITY_INT8 )(actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT8) | 
|---|
| 697 | #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_INT16(threshold, actual, line, message)               UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT16)(threshold), (UNITY_INT)(UNITY_INT16)(actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT16) | 
|---|
| 698 | #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_INT32(threshold, actual, line, message)               UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT32)(threshold), (UNITY_INT)(UNITY_INT32)(actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT32) | 
|---|
| 699 | #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_UINT(threshold, actual, line, message)                UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold),              (UNITY_INT)(actual),              UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT) | 
|---|
| 700 | #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_UINT8(threshold, actual, line, message)               UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT8 )(threshold), (UNITY_INT)(UNITY_UINT8 )(actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT8) | 
|---|
| 701 | #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_UINT16(threshold, actual, line, message)              UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT16)(threshold), (UNITY_INT)(UNITY_UINT16)(actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT16) | 
|---|
| 702 | #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_UINT32(threshold, actual, line, message)              UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT32)(threshold), (UNITY_INT)(UNITY_UINT32)(actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT32) | 
|---|
| 703 | #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_HEX8(threshold, actual, line, message)                UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT8 )(threshold), (UNITY_INT)(UNITY_UINT8 )(actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX8) | 
|---|
| 704 | #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_HEX16(threshold, actual, line, message)               UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT16)(threshold), (UNITY_INT)(UNITY_UINT16)(actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX16) | 
|---|
| 705 | #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_HEX32(threshold, actual, line, message)               UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT32)(threshold), (UNITY_INT)(UNITY_UINT32)(actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX32) | 
|---|
| 706 |  | 
|---|
| 707 | #define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_INT(threshold, actual, line, message)                 UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold),              (UNITY_INT)(actual),              UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT) | 
|---|
| 708 | #define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_INT8(threshold, actual, line, message)                UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT8 )(threshold), (UNITY_INT)(UNITY_INT8 )(actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT8) | 
|---|
| 709 | #define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_INT16(threshold, actual, line, message)               UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT16)(threshold), (UNITY_INT)(UNITY_INT16)(actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT16) | 
|---|
| 710 | #define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_INT32(threshold, actual, line, message)               UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT32)(threshold), (UNITY_INT)(UNITY_INT32)(actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT32) | 
|---|
| 711 | #define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_UINT(threshold, actual, line, message)                UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold),              (UNITY_INT)(actual),              UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT) | 
|---|
| 712 | #define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_UINT8(threshold, actual, line, message)               UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT8 )(threshold), (UNITY_INT)(UNITY_UINT8 )(actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT8) | 
|---|
| 713 | #define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_UINT16(threshold, actual, line, message)              UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT16)(threshold), (UNITY_INT)(UNITY_UINT16)(actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT16) | 
|---|
| 714 | #define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_UINT32(threshold, actual, line, message)              UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT32)(threshold), (UNITY_INT)(UNITY_UINT32)(actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT32) | 
|---|
| 715 | #define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_HEX8(threshold, actual, line, message)                UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT8 )(threshold), (UNITY_INT)(UNITY_UINT8 )(actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX8) | 
|---|
| 716 | #define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_HEX16(threshold, actual, line, message)               UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT16)(threshold), (UNITY_INT)(UNITY_UINT16)(actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX16) | 
|---|
| 717 | #define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_HEX32(threshold, actual, line, message)               UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT32)(threshold), (UNITY_INT)(UNITY_UINT32)(actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX32) | 
|---|
| 718 |  | 
|---|
| 719 | #define UNITY_TEST_ASSERT_INT_WITHIN(delta, expected, actual, line, message)                     UnityAssertNumbersWithin((delta), (UNITY_INT)(expected), (UNITY_INT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT) | 
|---|
| 720 | #define UNITY_TEST_ASSERT_INT8_WITHIN(delta, expected, actual, line, message)                    UnityAssertNumbersWithin((UNITY_UINT8 )(delta), (UNITY_INT)(UNITY_INT8 )(expected), (UNITY_INT)(UNITY_INT8 )(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT8) | 
|---|
| 721 | #define UNITY_TEST_ASSERT_INT16_WITHIN(delta, expected, actual, line, message)                   UnityAssertNumbersWithin((UNITY_UINT16)(delta), (UNITY_INT)(UNITY_INT16)(expected), (UNITY_INT)(UNITY_INT16)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT16) | 
|---|
| 722 | #define UNITY_TEST_ASSERT_INT32_WITHIN(delta, expected, actual, line, message)                   UnityAssertNumbersWithin((UNITY_UINT32)(delta), (UNITY_INT)(UNITY_INT32)(expected), (UNITY_INT)(UNITY_INT32)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT32) | 
|---|
| 723 | #define UNITY_TEST_ASSERT_UINT_WITHIN(delta, expected, actual, line, message)                    UnityAssertNumbersWithin((delta), (UNITY_INT)(expected), (UNITY_INT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT) | 
|---|
| 724 | #define UNITY_TEST_ASSERT_UINT8_WITHIN(delta, expected, actual, line, message)                   UnityAssertNumbersWithin((UNITY_UINT8 )(delta), (UNITY_INT)(UNITY_UINT)(UNITY_UINT8 )(expected), (UNITY_INT)(UNITY_UINT)(UNITY_UINT8 )(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT8) | 
|---|
| 725 | #define UNITY_TEST_ASSERT_UINT16_WITHIN(delta, expected, actual, line, message)                  UnityAssertNumbersWithin((UNITY_UINT16)(delta), (UNITY_INT)(UNITY_UINT)(UNITY_UINT16)(expected), (UNITY_INT)(UNITY_UINT)(UNITY_UINT16)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT16) | 
|---|
| 726 | #define UNITY_TEST_ASSERT_UINT32_WITHIN(delta, expected, actual, line, message)                  UnityAssertNumbersWithin((UNITY_UINT32)(delta), (UNITY_INT)(UNITY_UINT)(UNITY_UINT32)(expected), (UNITY_INT)(UNITY_UINT)(UNITY_UINT32)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT32) | 
|---|
| 727 | #define UNITY_TEST_ASSERT_HEX8_WITHIN(delta, expected, actual, line, message)                    UnityAssertNumbersWithin((UNITY_UINT8 )(delta), (UNITY_INT)(UNITY_UINT)(UNITY_UINT8 )(expected), (UNITY_INT)(UNITY_UINT)(UNITY_UINT8 )(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX8) | 
|---|
| 728 | #define UNITY_TEST_ASSERT_HEX16_WITHIN(delta, expected, actual, line, message)                   UnityAssertNumbersWithin((UNITY_UINT16)(delta), (UNITY_INT)(UNITY_UINT)(UNITY_UINT16)(expected), (UNITY_INT)(UNITY_UINT)(UNITY_UINT16)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX16) | 
|---|
| 729 | #define UNITY_TEST_ASSERT_HEX32_WITHIN(delta, expected, actual, line, message)                   UnityAssertNumbersWithin((UNITY_UINT32)(delta), (UNITY_INT)(UNITY_UINT)(UNITY_UINT32)(expected), (UNITY_INT)(UNITY_UINT)(UNITY_UINT32)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX32) | 
|---|
| 730 |  | 
|---|
| 731 | #define UNITY_TEST_ASSERT_EQUAL_PTR(expected, actual, line, message)                             UnityAssertEqualNumber((UNITY_PTR_TO_INT)(expected), (UNITY_PTR_TO_INT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_POINTER) | 
|---|
| 732 | #define UNITY_TEST_ASSERT_EQUAL_STRING(expected, actual, line, message)                          UnityAssertEqualString((const char*)(expected), (const char*)(actual), (message), (UNITY_LINE_TYPE)(line)) | 
|---|
| 733 | #define UNITY_TEST_ASSERT_EQUAL_STRING_LEN(expected, actual, len, line, message)                 UnityAssertEqualStringLen((const char*)(expected), (const char*)(actual), (UNITY_UINT32)(len), (message), (UNITY_LINE_TYPE)(line)) | 
|---|
| 734 | #define UNITY_TEST_ASSERT_EQUAL_MEMORY(expected, actual, len, line, message)                     UnityAssertEqualMemory((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(len), 1, (message), (UNITY_LINE_TYPE)(line), UNITY_ARRAY_TO_ARRAY) | 
|---|
| 735 |  | 
|---|
| 736 | #define UNITY_TEST_ASSERT_EQUAL_INT_ARRAY(expected, actual, num_elements, line, message)         UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT,     UNITY_ARRAY_TO_ARRAY) | 
|---|
| 737 | #define UNITY_TEST_ASSERT_EQUAL_INT8_ARRAY(expected, actual, num_elements, line, message)        UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT8,    UNITY_ARRAY_TO_ARRAY) | 
|---|
| 738 | #define UNITY_TEST_ASSERT_EQUAL_INT16_ARRAY(expected, actual, num_elements, line, message)       UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT16,   UNITY_ARRAY_TO_ARRAY) | 
|---|
| 739 | #define UNITY_TEST_ASSERT_EQUAL_INT32_ARRAY(expected, actual, num_elements, line, message)       UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT32,   UNITY_ARRAY_TO_ARRAY) | 
|---|
| 740 | #define UNITY_TEST_ASSERT_EQUAL_UINT_ARRAY(expected, actual, num_elements, line, message)        UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT,    UNITY_ARRAY_TO_ARRAY) | 
|---|
| 741 | #define UNITY_TEST_ASSERT_EQUAL_UINT8_ARRAY(expected, actual, num_elements, line, message)       UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT8,   UNITY_ARRAY_TO_ARRAY) | 
|---|
| 742 | #define UNITY_TEST_ASSERT_EQUAL_UINT16_ARRAY(expected, actual, num_elements, line, message)      UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT16,  UNITY_ARRAY_TO_ARRAY) | 
|---|
| 743 | #define UNITY_TEST_ASSERT_EQUAL_UINT32_ARRAY(expected, actual, num_elements, line, message)      UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT32,  UNITY_ARRAY_TO_ARRAY) | 
|---|
| 744 | #define UNITY_TEST_ASSERT_EQUAL_HEX8_ARRAY(expected, actual, num_elements, line, message)        UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX8,    UNITY_ARRAY_TO_ARRAY) | 
|---|
| 745 | #define UNITY_TEST_ASSERT_EQUAL_HEX16_ARRAY(expected, actual, num_elements, line, message)       UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX16,   UNITY_ARRAY_TO_ARRAY) | 
|---|
| 746 | #define UNITY_TEST_ASSERT_EQUAL_HEX32_ARRAY(expected, actual, num_elements, line, message)       UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX32,   UNITY_ARRAY_TO_ARRAY) | 
|---|
| 747 | #define UNITY_TEST_ASSERT_EQUAL_PTR_ARRAY(expected, actual, num_elements, line, message)         UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_POINTER, UNITY_ARRAY_TO_ARRAY) | 
|---|
| 748 | #define UNITY_TEST_ASSERT_EQUAL_STRING_ARRAY(expected, actual, num_elements, line, message)      UnityAssertEqualStringArray((UNITY_INTERNAL_PTR)(expected), (const char**)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_ARRAY_TO_ARRAY) | 
|---|
| 749 | #define UNITY_TEST_ASSERT_EQUAL_MEMORY_ARRAY(expected, actual, len, num_elements, line, message) UnityAssertEqualMemory((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(len), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_ARRAY_TO_ARRAY) | 
|---|
| 750 |  | 
|---|
| 751 | #define UNITY_TEST_ASSERT_EACH_EQUAL_INT(expected, actual, num_elements, line, message)          UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)              expected, sizeof(int)),  (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT,     UNITY_ARRAY_TO_VAL) | 
|---|
| 752 | #define UNITY_TEST_ASSERT_EACH_EQUAL_INT8(expected, actual, num_elements, line, message)         UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_INT8  )expected, 1),            (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT8,    UNITY_ARRAY_TO_VAL) | 
|---|
| 753 | #define UNITY_TEST_ASSERT_EACH_EQUAL_INT16(expected, actual, num_elements, line, message)        UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_INT16 )expected, 2),            (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT16,   UNITY_ARRAY_TO_VAL) | 
|---|
| 754 | #define UNITY_TEST_ASSERT_EACH_EQUAL_INT32(expected, actual, num_elements, line, message)        UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_INT32 )expected, 4),            (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT32,   UNITY_ARRAY_TO_VAL) | 
|---|
| 755 | #define UNITY_TEST_ASSERT_EACH_EQUAL_UINT(expected, actual, num_elements, line, message)         UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)              expected, sizeof(unsigned int)), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT,    UNITY_ARRAY_TO_VAL) | 
|---|
| 756 | #define UNITY_TEST_ASSERT_EACH_EQUAL_UINT8(expected, actual, num_elements, line, message)        UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_UINT8 )expected, 1),            (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT8,   UNITY_ARRAY_TO_VAL) | 
|---|
| 757 | #define UNITY_TEST_ASSERT_EACH_EQUAL_UINT16(expected, actual, num_elements, line, message)       UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_UINT16)expected, 2),            (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT16,  UNITY_ARRAY_TO_VAL) | 
|---|
| 758 | #define UNITY_TEST_ASSERT_EACH_EQUAL_UINT32(expected, actual, num_elements, line, message)       UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_UINT32)expected, 4),            (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT32,  UNITY_ARRAY_TO_VAL) | 
|---|
| 759 | #define UNITY_TEST_ASSERT_EACH_EQUAL_HEX8(expected, actual, num_elements, line, message)         UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_INT8  )expected, 1),            (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX8,    UNITY_ARRAY_TO_VAL) | 
|---|
| 760 | #define UNITY_TEST_ASSERT_EACH_EQUAL_HEX16(expected, actual, num_elements, line, message)        UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_INT16 )expected, 2),            (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX16,   UNITY_ARRAY_TO_VAL) | 
|---|
| 761 | #define UNITY_TEST_ASSERT_EACH_EQUAL_HEX32(expected, actual, num_elements, line, message)        UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_INT32 )expected, 4),            (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX32,   UNITY_ARRAY_TO_VAL) | 
|---|
| 762 | #define UNITY_TEST_ASSERT_EACH_EQUAL_PTR(expected, actual, num_elements, line, message)          UnityAssertEqualIntArray(UnityNumToPtr((UNITY_PTR_TO_INT)       expected, sizeof(int*)), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_POINTER, UNITY_ARRAY_TO_VAL) | 
|---|
| 763 | #define UNITY_TEST_ASSERT_EACH_EQUAL_STRING(expected, actual, num_elements, line, message)       UnityAssertEqualStringArray((UNITY_INTERNAL_PTR)(expected), (const char**)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_ARRAY_TO_VAL) | 
|---|
| 764 | #define UNITY_TEST_ASSERT_EACH_EQUAL_MEMORY(expected, actual, len, num_elements, line, message)  UnityAssertEqualMemory((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(len), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_ARRAY_TO_VAL) | 
|---|
| 765 |  | 
|---|
| 766 | #ifdef UNITY_SUPPORT_64 | 
|---|
| 767 | #define UNITY_TEST_ASSERT_EQUAL_INT64(expected, actual, line, message)                           UnityAssertEqualNumber((UNITY_INT)(expected), (UNITY_INT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT64) | 
|---|
| 768 | #define UNITY_TEST_ASSERT_EQUAL_UINT64(expected, actual, line, message)                          UnityAssertEqualNumber((UNITY_INT)(expected), (UNITY_INT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT64) | 
|---|
| 769 | #define UNITY_TEST_ASSERT_EQUAL_HEX64(expected, actual, line, message)                           UnityAssertEqualNumber((UNITY_INT)(expected), (UNITY_INT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX64) | 
|---|
| 770 | #define UNITY_TEST_ASSERT_EQUAL_INT64_ARRAY(expected, actual, num_elements, line, message)       UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT64,  UNITY_ARRAY_TO_ARRAY) | 
|---|
| 771 | #define UNITY_TEST_ASSERT_EQUAL_UINT64_ARRAY(expected, actual, num_elements, line, message)      UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT64, UNITY_ARRAY_TO_ARRAY) | 
|---|
| 772 | #define UNITY_TEST_ASSERT_EQUAL_HEX64_ARRAY(expected, actual, num_elements, line, message)       UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX64,  UNITY_ARRAY_TO_ARRAY) | 
|---|
| 773 | #define UNITY_TEST_ASSERT_EACH_EQUAL_INT64(expected, actual, num_elements, line, message)        UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_INT64)expected, 8), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT64,  UNITY_ARRAY_TO_VAL) | 
|---|
| 774 | #define UNITY_TEST_ASSERT_EACH_EQUAL_UINT64(expected, actual, num_elements, line, message)       UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_UINT64)expected, 8), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT64, UNITY_ARRAY_TO_VAL) | 
|---|
| 775 | #define UNITY_TEST_ASSERT_EACH_EQUAL_HEX64(expected, actual, num_elements, line, message)        UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_INT64)expected, 8), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX64,  UNITY_ARRAY_TO_VAL) | 
|---|
| 776 | #define UNITY_TEST_ASSERT_INT64_WITHIN(delta, expected, actual, line, message)                   UnityAssertNumbersWithin((delta), (UNITY_INT)(expected), (UNITY_INT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT64) | 
|---|
| 777 | #define UNITY_TEST_ASSERT_UINT64_WITHIN(delta, expected, actual, line, message)                  UnityAssertNumbersWithin((delta), (UNITY_INT)(expected), (UNITY_INT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT64) | 
|---|
| 778 | #define UNITY_TEST_ASSERT_HEX64_WITHIN(delta, expected, actual, line, message)                   UnityAssertNumbersWithin((delta), (UNITY_INT)(expected), (UNITY_INT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX64) | 
|---|
| 779 | #define UNITY_TEST_ASSERT_GREATER_THAN_INT64(threshold, actual, line, message)                   UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_GREATER_THAN,     (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT64) | 
|---|
| 780 | #define UNITY_TEST_ASSERT_GREATER_THAN_UINT64(threshold, actual, line, message)                  UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_GREATER_THAN,     (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT64) | 
|---|
| 781 | #define UNITY_TEST_ASSERT_GREATER_THAN_HEX64(threshold, actual, line, message)                   UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_GREATER_THAN,     (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX64) | 
|---|
| 782 | #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_INT64(threshold, actual, line, message)               UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT64) | 
|---|
| 783 | #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_UINT64(threshold, actual, line, message)              UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT64) | 
|---|
| 784 | #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_HEX64(threshold, actual, line, message)               UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX64) | 
|---|
| 785 | #define UNITY_TEST_ASSERT_SMALLER_THAN_INT64(threshold, actual, line, message)                   UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_SMALLER_THAN,     (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT64) | 
|---|
| 786 | #define UNITY_TEST_ASSERT_SMALLER_THAN_UINT64(threshold, actual, line, message)                  UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_SMALLER_THAN,     (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT64) | 
|---|
| 787 | #define UNITY_TEST_ASSERT_SMALLER_THAN_HEX64(threshold, actual, line, message)                   UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_SMALLER_THAN,     (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX64) | 
|---|
| 788 | #define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_INT64(threshold, actual, line, message)               UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT64) | 
|---|
| 789 | #define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_UINT64(threshold, actual, line, message)              UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT64) | 
|---|
| 790 | #define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_HEX64(threshold, actual, line, message)               UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX64) | 
|---|
| 791 | #else | 
|---|
| 792 | #define UNITY_TEST_ASSERT_EQUAL_INT64(expected, actual, line, message)                           UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64) | 
|---|
| 793 | #define UNITY_TEST_ASSERT_EQUAL_UINT64(expected, actual, line, message)                          UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64) | 
|---|
| 794 | #define UNITY_TEST_ASSERT_EQUAL_HEX64(expected, actual, line, message)                           UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64) | 
|---|
| 795 | #define UNITY_TEST_ASSERT_EQUAL_INT64_ARRAY(expected, actual, num_elements, line, message)       UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64) | 
|---|
| 796 | #define UNITY_TEST_ASSERT_EQUAL_UINT64_ARRAY(expected, actual, num_elements, line, message)      UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64) | 
|---|
| 797 | #define UNITY_TEST_ASSERT_EQUAL_HEX64_ARRAY(expected, actual, num_elements, line, message)       UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64) | 
|---|
| 798 | #define UNITY_TEST_ASSERT_INT64_WITHIN(delta, expected, actual, line, message)                   UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64) | 
|---|
| 799 | #define UNITY_TEST_ASSERT_UINT64_WITHIN(delta, expected, actual, line, message)                  UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64) | 
|---|
| 800 | #define UNITY_TEST_ASSERT_HEX64_WITHIN(delta, expected, actual, line, message)                   UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64) | 
|---|
| 801 | #define UNITY_TEST_ASSERT_GREATER_THAN_INT64(threshold, actual, line, message)                   UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64) | 
|---|
| 802 | #define UNITY_TEST_ASSERT_GREATER_THAN_UINT64(threshold, actual, line, message)                  UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64) | 
|---|
| 803 | #define UNITY_TEST_ASSERT_GREATER_THAN_HEX64(threshold, actual, line, message)                   UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64) | 
|---|
| 804 | #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_INT64(threshold, actual, line, message)               UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64) | 
|---|
| 805 | #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_UINT64(threshold, actual, line, message)              UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64) | 
|---|
| 806 | #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_HEX64(threshold, actual, line, message)               UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64) | 
|---|
| 807 | #define UNITY_TEST_ASSERT_SMALLER_THAN_INT64(threshold, actual, line, message)                   UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64) | 
|---|
| 808 | #define UNITY_TEST_ASSERT_SMALLER_THAN_UINT64(threshold, actual, line, message)                  UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64) | 
|---|
| 809 | #define UNITY_TEST_ASSERT_SMALLER_THAN_HEX64(threshold, actual, line, message)                   UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64) | 
|---|
| 810 | #define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_INT64(threshold, actual, line, message)               UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64) | 
|---|
| 811 | #define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_UINT64(threshold, actual, line, message)              UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64) | 
|---|
| 812 | #define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_HEX64(threshold, actual, line, message)               UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64) | 
|---|
| 813 | #endif | 
|---|
| 814 |  | 
|---|
| 815 | #ifdef UNITY_EXCLUDE_FLOAT | 
|---|
| 816 | #define UNITY_TEST_ASSERT_FLOAT_WITHIN(delta, expected, actual, line, message)                   UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat) | 
|---|
| 817 | #define UNITY_TEST_ASSERT_EQUAL_FLOAT(expected, actual, line, message)                           UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat) | 
|---|
| 818 | #define UNITY_TEST_ASSERT_EQUAL_FLOAT_ARRAY(expected, actual, num_elements, line, message)       UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat) | 
|---|
| 819 | #define UNITY_TEST_ASSERT_EACH_EQUAL_FLOAT(expected, actual, num_elements, line, message)        UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat) | 
|---|
| 820 | #define UNITY_TEST_ASSERT_FLOAT_IS_INF(actual, line, message)                                    UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat) | 
|---|
| 821 | #define UNITY_TEST_ASSERT_FLOAT_IS_NEG_INF(actual, line, message)                                UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat) | 
|---|
| 822 | #define UNITY_TEST_ASSERT_FLOAT_IS_NAN(actual, line, message)                                    UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat) | 
|---|
| 823 | #define UNITY_TEST_ASSERT_FLOAT_IS_DETERMINATE(actual, line, message)                            UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat) | 
|---|
| 824 | #define UNITY_TEST_ASSERT_FLOAT_IS_NOT_INF(actual, line, message)                                UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat) | 
|---|
| 825 | #define UNITY_TEST_ASSERT_FLOAT_IS_NOT_NEG_INF(actual, line, message)                            UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat) | 
|---|
| 826 | #define UNITY_TEST_ASSERT_FLOAT_IS_NOT_NAN(actual, line, message)                                UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat) | 
|---|
| 827 | #define UNITY_TEST_ASSERT_FLOAT_IS_NOT_DETERMINATE(actual, line, message)                        UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat) | 
|---|
| 828 | #else | 
|---|
| 829 | #define UNITY_TEST_ASSERT_FLOAT_WITHIN(delta, expected, actual, line, message)                   UnityAssertFloatsWithin((UNITY_FLOAT)(delta), (UNITY_FLOAT)(expected), (UNITY_FLOAT)(actual), (message), (UNITY_LINE_TYPE)(line)) | 
|---|
| 830 | #define UNITY_TEST_ASSERT_EQUAL_FLOAT(expected, actual, line, message)                           UNITY_TEST_ASSERT_FLOAT_WITHIN((UNITY_FLOAT)(expected) * (UNITY_FLOAT)UNITY_FLOAT_PRECISION, (UNITY_FLOAT)(expected), (UNITY_FLOAT)(actual), (UNITY_LINE_TYPE)(line), (message)) | 
|---|
| 831 | #define UNITY_TEST_ASSERT_EQUAL_FLOAT_ARRAY(expected, actual, num_elements, line, message)       UnityAssertEqualFloatArray((UNITY_FLOAT*)(expected), (UNITY_FLOAT*)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_ARRAY_TO_ARRAY) | 
|---|
| 832 | #define UNITY_TEST_ASSERT_EACH_EQUAL_FLOAT(expected, actual, num_elements, line, message)        UnityAssertEqualFloatArray(UnityFloatToPtr(expected), (UNITY_FLOAT*)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_ARRAY_TO_VAL) | 
|---|
| 833 | #define UNITY_TEST_ASSERT_FLOAT_IS_INF(actual, line, message)                                    UnityAssertFloatSpecial((UNITY_FLOAT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_INF) | 
|---|
| 834 | #define UNITY_TEST_ASSERT_FLOAT_IS_NEG_INF(actual, line, message)                                UnityAssertFloatSpecial((UNITY_FLOAT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_NEG_INF) | 
|---|
| 835 | #define UNITY_TEST_ASSERT_FLOAT_IS_NAN(actual, line, message)                                    UnityAssertFloatSpecial((UNITY_FLOAT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_NAN) | 
|---|
| 836 | #define UNITY_TEST_ASSERT_FLOAT_IS_DETERMINATE(actual, line, message)                            UnityAssertFloatSpecial((UNITY_FLOAT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_DET) | 
|---|
| 837 | #define UNITY_TEST_ASSERT_FLOAT_IS_NOT_INF(actual, line, message)                                UnityAssertFloatSpecial((UNITY_FLOAT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_NOT_INF) | 
|---|
| 838 | #define UNITY_TEST_ASSERT_FLOAT_IS_NOT_NEG_INF(actual, line, message)                            UnityAssertFloatSpecial((UNITY_FLOAT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_NOT_NEG_INF) | 
|---|
| 839 | #define UNITY_TEST_ASSERT_FLOAT_IS_NOT_NAN(actual, line, message)                                UnityAssertFloatSpecial((UNITY_FLOAT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_NOT_NAN) | 
|---|
| 840 | #define UNITY_TEST_ASSERT_FLOAT_IS_NOT_DETERMINATE(actual, line, message)                        UnityAssertFloatSpecial((UNITY_FLOAT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_NOT_DET) | 
|---|
| 841 | #endif | 
|---|
| 842 |  | 
|---|
| 843 | #ifdef UNITY_EXCLUDE_DOUBLE | 
|---|
| 844 | #define UNITY_TEST_ASSERT_DOUBLE_WITHIN(delta, expected, actual, line, message)                  UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble) | 
|---|
| 845 | #define UNITY_TEST_ASSERT_EQUAL_DOUBLE(expected, actual, line, message)                          UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble) | 
|---|
| 846 | #define UNITY_TEST_ASSERT_EQUAL_DOUBLE_ARRAY(expected, actual, num_elements, line, message)      UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble) | 
|---|
| 847 | #define UNITY_TEST_ASSERT_EACH_EQUAL_DOUBLE(expected, actual, num_elements, line, message)       UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble) | 
|---|
| 848 | #define UNITY_TEST_ASSERT_DOUBLE_IS_INF(actual, line, message)                                   UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble) | 
|---|
| 849 | #define UNITY_TEST_ASSERT_DOUBLE_IS_NEG_INF(actual, line, message)                               UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble) | 
|---|
| 850 | #define UNITY_TEST_ASSERT_DOUBLE_IS_NAN(actual, line, message)                                   UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble) | 
|---|
| 851 | #define UNITY_TEST_ASSERT_DOUBLE_IS_DETERMINATE(actual, line, message)                           UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble) | 
|---|
| 852 | #define UNITY_TEST_ASSERT_DOUBLE_IS_NOT_INF(actual, line, message)                               UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble) | 
|---|
| 853 | #define UNITY_TEST_ASSERT_DOUBLE_IS_NOT_NEG_INF(actual, line, message)                           UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble) | 
|---|
| 854 | #define UNITY_TEST_ASSERT_DOUBLE_IS_NOT_NAN(actual, line, message)                               UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble) | 
|---|
| 855 | #define UNITY_TEST_ASSERT_DOUBLE_IS_NOT_DETERMINATE(actual, line, message)                       UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble) | 
|---|
| 856 | #else | 
|---|
| 857 | #define UNITY_TEST_ASSERT_DOUBLE_WITHIN(delta, expected, actual, line, message)                  UnityAssertDoublesWithin((UNITY_DOUBLE)(delta), (UNITY_DOUBLE)(expected), (UNITY_DOUBLE)(actual), (message), (UNITY_LINE_TYPE)line) | 
|---|
| 858 | #define UNITY_TEST_ASSERT_EQUAL_DOUBLE(expected, actual, line, message)                          UNITY_TEST_ASSERT_DOUBLE_WITHIN((UNITY_DOUBLE)(expected) * (UNITY_DOUBLE)UNITY_DOUBLE_PRECISION, (UNITY_DOUBLE)expected, (UNITY_DOUBLE)actual, (UNITY_LINE_TYPE)(line), message) | 
|---|
| 859 | #define UNITY_TEST_ASSERT_EQUAL_DOUBLE_ARRAY(expected, actual, num_elements, line, message)      UnityAssertEqualDoubleArray((UNITY_DOUBLE*)(expected), (UNITY_DOUBLE*)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)line, UNITY_ARRAY_TO_ARRAY) | 
|---|
| 860 | #define UNITY_TEST_ASSERT_EACH_EQUAL_DOUBLE(expected, actual, num_elements, line, message)       UnityAssertEqualDoubleArray(UnityDoubleToPtr(expected), (UNITY_DOUBLE*)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)line, UNITY_ARRAY_TO_VAL) | 
|---|
| 861 | #define UNITY_TEST_ASSERT_DOUBLE_IS_INF(actual, line, message)                                   UnityAssertDoubleSpecial((UNITY_DOUBLE)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_INF) | 
|---|
| 862 | #define UNITY_TEST_ASSERT_DOUBLE_IS_NEG_INF(actual, line, message)                               UnityAssertDoubleSpecial((UNITY_DOUBLE)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_NEG_INF) | 
|---|
| 863 | #define UNITY_TEST_ASSERT_DOUBLE_IS_NAN(actual, line, message)                                   UnityAssertDoubleSpecial((UNITY_DOUBLE)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_NAN) | 
|---|
| 864 | #define UNITY_TEST_ASSERT_DOUBLE_IS_DETERMINATE(actual, line, message)                           UnityAssertDoubleSpecial((UNITY_DOUBLE)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_DET) | 
|---|
| 865 | #define UNITY_TEST_ASSERT_DOUBLE_IS_NOT_INF(actual, line, message)                               UnityAssertDoubleSpecial((UNITY_DOUBLE)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_NOT_INF) | 
|---|
| 866 | #define UNITY_TEST_ASSERT_DOUBLE_IS_NOT_NEG_INF(actual, line, message)                           UnityAssertDoubleSpecial((UNITY_DOUBLE)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_NOT_NEG_INF) | 
|---|
| 867 | #define UNITY_TEST_ASSERT_DOUBLE_IS_NOT_NAN(actual, line, message)                               UnityAssertDoubleSpecial((UNITY_DOUBLE)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_NOT_NAN) | 
|---|
| 868 | #define UNITY_TEST_ASSERT_DOUBLE_IS_NOT_DETERMINATE(actual, line, message)                       UnityAssertDoubleSpecial((UNITY_DOUBLE)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_NOT_DET) | 
|---|
| 869 | #endif | 
|---|
| 870 |  | 
|---|
| 871 | /* End of UNITY_INTERNALS_H */ | 
|---|
| 872 | #endif | 
|---|
| 873 |  | 
|---|