Skip to content

Commit 297b348

Browse files
RC-Repositoriesaggarg
authored andcommitted
coremqtt-agent: Add Subscription Manager unit test
Adds ~35 unit tests covering all functions in the file and some edge cases. Also modifies CMakeLists.txt to include the .cpp test file. Signed-off-by: Reuben Cartwright <[email protected]>
1 parent 29944b8 commit 297b348

File tree

3 files changed

+531
-0
lines changed

3 files changed

+531
-0
lines changed

components/aws_iot/coremqtt_agent/integration/tests/CMakeLists.txt

+20
Original file line numberDiff line numberDiff line change
@@ -77,3 +77,23 @@ target_link_libraries(freertos-command-pool-test
7777
trusted-firmware-m-mock
7878
)
7979
iot_reference_arm_corstone3xx_add_test(freertos-command-pool-test)
80+
81+
add_executable(mqtt-subscription-manager-test
82+
test_subscription_manager.cpp
83+
../src/subscription_manager.c
84+
)
85+
target_include_directories(mqtt-subscription-manager-test
86+
PRIVATE
87+
.
88+
../../library_mocks/inc
89+
90+
../inc
91+
)
92+
target_link_libraries(mqtt-subscription-manager-test
93+
PRIVATE
94+
fff
95+
coremqtt-agent-test-config-mocks
96+
coremqtt-mock
97+
helpers-logging-mock
98+
)
99+
iot_reference_arm_corstone3xx_add_test(mqtt-subscription-manager-test)

0 commit comments

Comments
 (0)