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.
18 lines
181 B
C
18 lines
181 B
C
#include "unity.h"
|
|
#include "foo.h"
|
|
|
|
void setUp(void)
|
|
{
|
|
}
|
|
|
|
void tearDown(void)
|
|
{
|
|
}
|
|
|
|
void test_foo_init_should_initialize_multiplier()
|
|
{
|
|
foo_init();
|
|
|
|
TEST_ASSERT_FALSE(1);
|
|
}
|