15 lines
244 B
C
15 lines
244 B
C
#include "test_memory.h"
|
|
#include "unity.h"
|
|
|
|
void test_SomethingPassing() {
|
|
TEST_ASSERT(1);
|
|
}
|
|
|
|
void test_SomethingFails() {
|
|
TEST_ASSERT(0);
|
|
}
|
|
|
|
void test_memory() {
|
|
RUN_TEST(test_SomethingPassing);
|
|
// RUN_TEST(test_SomethingFails);
|
|
} |