mirror of
https://github.com/ThrowTheSwitch/CMock
synced 2025-03-13 16:51:12 -04:00
Moved temp sensor example into examples/temp_sensor. Added basic make example in examples/make_example.
16 lines
186 B
C
16 lines
186 B
C
#include "unity.h"
|
|
#include "mock_foo.h"
|
|
|
|
void setUp(void)
|
|
{
|
|
}
|
|
|
|
void tearDown(void)
|
|
{
|
|
}
|
|
|
|
void test_main_should_initialize_foo(void)
|
|
{
|
|
TEST_IGNORE_MESSAGE("TODO: Implement main!");
|
|
}
|