Configure test extension for vscode

This commit is contained in:
2022-11-27 14:55:06 +01:00
parent 363c9568a7
commit e67c12358f
8 changed files with 102 additions and 4 deletions

View File

@@ -12,9 +12,10 @@ void tearDown(void)
{
}
void test_one(void)
void test_CommandDetetection(void)
{
TEST_FAIL();
TEST_ASSERT(1==1);
}
@@ -22,7 +23,7 @@ void test_one(void)
int main(void)
{
UNITY_BEGIN();
RUN_TEST(test_one);
RUN_TEST(test_CommandDetetection);
return UNITY_END();
}