Configure workspace
This commit is contained in:
28
test/cmd_parser/cmd_parser_test.c
Normal file
28
test/cmd_parser/cmd_parser_test.c
Normal file
@@ -0,0 +1,28 @@
|
||||
#include "stdlib.h"
|
||||
#include "string.h"
|
||||
#include "unity.h"
|
||||
#include "cmd_parser.h"
|
||||
|
||||
|
||||
void setUp(void)
|
||||
{
|
||||
}
|
||||
|
||||
void tearDown(void)
|
||||
{
|
||||
}
|
||||
|
||||
void test_one(void)
|
||||
{
|
||||
TEST_FAIL();
|
||||
}
|
||||
|
||||
|
||||
|
||||
int main(void)
|
||||
{
|
||||
UNITY_BEGIN();
|
||||
RUN_TEST(test_one);
|
||||
|
||||
return UNITY_END();
|
||||
}
|
||||
Reference in New Issue
Block a user