Skip to content

Commit

Permalink
Fix #1644, finish ES misc API functional test
Browse files Browse the repository at this point in the history
  • Loading branch information
nmullane committed Aug 5, 2021
1 parent c4ae5b2 commit 18a9295
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions modules/cfe_testcase/src/es_misc_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,15 @@ void TestWriteToSysLog(void)
"MIR (Manual Inspection Required) for CFE_ES_WriteToSysLog");
}

void TestProcessAsyncEvent(void)
{
UtPrintf("Testing: CFE_ES_ProcessAsyncEvent");
UtAssert_VOIDCALL(CFE_ES_ProcessAsyncEvent());
}

void ESMiscTestSetup(void)
{
UtTest_Add(TestCalculateCRC, NULL, NULL, "Test Calculate CRC");
UtTest_Add(TestWriteToSysLog, NULL, NULL, "Test Write To Sys Log");
UtTest_Add(TestProcessAsyncEvent, NULL, NULL, "Test Process Async Event");
}

0 comments on commit 18a9295

Please sign in to comment.