+Mocking of ADC. +Mocking of timer +Mocking of Register editing. +tests for all the above
11 lines
216 B
CMake
11 lines
216 B
CMake
# TEST_RUNNER
|
|
add_library(test_MockRegEdit
|
|
test_MockRegEdit.cpp
|
|
)
|
|
|
|
target_link_libraries(test_MockRegEdit
|
|
${CPPUTEST_LIBRARIES}/libCppUTest.a
|
|
${CPPUTEST_LIBRARIES}/libCppUTestExt.a
|
|
MockRegEdit
|
|
)
|
|
|