QodeAssist/test/CMakeLists.txt
Povilas Kanapickas 81ac3c71fb
chore: Add tests for CodeHandler (#105)
* chore: Extract test utils to separate file

This makes it possible to reuse the utils in other test files.

* chore: Add tests for CodeHandler
2025-03-06 13:45:12 +01:00

17 lines
325 B
CMake

add_executable(QodeAssistTest
../CodeHandler.cpp
CodeHandlerTest.cpp
DocumentContextReaderTest.cpp
unittest_main.cpp
)
target_link_libraries(QodeAssistTest PRIVATE
Qt::Core
GTest::GTest
GTest::Main
QtCreator::LanguageClient
Context
)
add_test(NAME QodeAssistTest COMMAND QodeAssistTest)