C ordening

This commit is contained in:
Rens Pastoor
2025-05-27 23:26:28 +02:00
parent 39269a71a7
commit 517087ccc1
207 changed files with 0 additions and 4278 deletions

View File

@@ -0,0 +1,34 @@
#include <string.h>
#include "file_element.h"
#include "unity.h"
#include "unity_test_module.h"
// I rather dislike keeping line numbers updated, so I made my own macro to ditch the line number
#define MY_RUN_TEST(func) RUN_TEST(func, 0)
void file_element_setUp(void)
{
// This is run before EACH test
}
void file_element_tearDown(void)
{
// This is run after EACH test
}
void test_EmptyTest_file(void)
{
TEST_ASSERT_EQUAL(1, 0);
}
void run_file_element_tests()
{
UnityRegisterSetupTearDown( file_element_setUp, file_element_tearDown);
MY_RUN_TEST(test_EmptyTest_file);
UnityUnregisterSetupTearDown();
}