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