Skip to content

Instantly share code, notes, and snippets.

@WarrenTheRabbit
Last active January 17, 2024 00:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save WarrenTheRabbit/1314c89a51f51be96d232573a261bae6 to your computer and use it in GitHub Desktop.
Save WarrenTheRabbit/1314c89a51f51be96d232573a261bae6 to your computer and use it in GitHub Desktop.
Boilerplate for a Unity test runner
#include "unity.h"
void setUp(void)
{
}
void tearDown(void)
{
}
int main(void)
{
UNITY_BEGIN();
return UNITY_END();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment