Skip to content

Commit

Permalink
Merge pull request #1766 from nmullane/fix1644-finish-es-misc-api-fun…
Browse files Browse the repository at this point in the history
…ctional-test

Fix #1644, finish ES misc API functional test
  • Loading branch information
astrogeco authored Aug 9, 2021
2 parents e7166d0 + 18a9295 commit 4c91565
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 @@ -67,8 +67,15 @@ void TestWriteToSysLog(void)
UtAssert_MIR("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 4c91565

Please sign in to comment.