We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f5abd9 commit 3f2ee86Copy full SHA for 3f2ee86
modules/cfe_testcase/src/evs_filters_test.c
@@ -37,6 +37,11 @@ void TestResetFilters(void)
37
{
38
UtPrintf("Testing: CFE_EVS_ResetFilter, CFE_EVS_ResetAllFilters");
39
40
+ /* Test logic below depends on the test case registering an EID of 1 and not registering 0, and the resets in theory
41
+ * could impact test behavior/management related to events. Although the expectation is either all or none of an EID
42
+ * would be filtered (no use case for a "counting" filter within the test app) so for normal use this is no impact.
43
+ */
44
+
45
UtAssert_INT32_EQ(CFE_EVS_ResetFilter(1), CFE_SUCCESS);
46
UtAssert_INT32_EQ(CFE_EVS_ResetAllFilters(), CFE_SUCCESS);
47
0 commit comments