Skip to content

Commit

Permalink
feat: implement main.c test file
Browse files Browse the repository at this point in the history
  • Loading branch information
wjsan committed May 19, 2024
1 parent bfd02d1 commit 51cdfe4
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions tests/main.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
/**
* @file main.c
* @author your name ([email protected])
* @brief
* @version 0.1
* @date 2024-04-28
*
* @copyright Copyright (c) 2024
*
*/

#include <stdio.h>
#include "unity.h"

void test_ciot_decoder();
void test_ciot_decoder_slip();
void test_ciot_decoder_s();

void setUp(void) {
// set stuff up here
}

void tearDown(void) {
// clean stuff up here
}

int app_main(void)
{
UNITY_BEGIN();
test_ciot_decoder();
test_ciot_decoder_slip();
test_ciot_decoder_s();
return UNITY_END();
}

0 comments on commit 51cdfe4

Please sign in to comment.