summaryrefslogtreecommitdiff
path: root/FreeRTOS-Plus/Test/CMock/vendor/unity/examples/example_3/src/ProductionCode2.c
blob: 77c969f1746c3c636ab991ff7dbb3e7aa2ee402b (plain)
1
2
3
4
5
6
7
8
9
10
11

#include "ProductionCode2.h"

char* ThisFunctionHasNotBeenTested(int Poor, char* LittleFunction)
{
  (void)Poor;
  (void)LittleFunction;
  //Since There Are No Tests Yet, This Function Could Be Empty For All We Know.
  // Which isn't terribly useful... but at least we put in a TEST_IGNORE so we won't forget
  return (char*)0;
}