-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); | ||
} |