Setup testing for LedController and removed the timer test runner

This commit is contained in:
jakeg00dwin 2024-08-21 20:06:20 -07:00
parent 3c99b7b8d5
commit e00c2824d4
2 changed files with 3 additions and 2 deletions

View File

@ -4,6 +4,7 @@
//ImportTestGroups //ImportTestGroups
IMPORT_TEST_GROUP(simple_test); IMPORT_TEST_GROUP(simple_test);
IMPORT_TEST_GROUP(test_RegEdit); IMPORT_TEST_GROUP(test_RegEdit);
IMPORT_TEST_GROUP(test_LedController);
//START: main //START: main

View File

@ -2,7 +2,7 @@ project(Tests)
# TEST_DIRS # TEST_DIRS
add_subdirectory(LedController) add_subdirectory(LedController)
add_subdirectory(timer) #add_subdirectory(timer)
#add_subdirectory(usart) #add_subdirectory(usart)
add_subdirectory(MockRegEdit) add_subdirectory(MockRegEdit)
add_subdirectory(RegEdit) add_subdirectory(RegEdit)
@ -22,7 +22,7 @@ target_link_libraries(AllTests
${CPPUTEST_LIBRARIES}/libCppUTestExt.a ${CPPUTEST_LIBRARIES}/libCppUTestExt.a
# TEST_LINKS # TEST_LINKS
test_LedController test_LedController
test_timer #test_timer
test_RegEdit test_RegEdit
simple_test simple_test
) )