score-back/tests/meson.build
Artur Mukhamadiev cbe56d9193 [base] hail vibe-coding
Minimal API functionality with unit tests,
could be used for integration tests with Unity server.
For internal testing used RPC_server implementation
2026-01-26 00:14:19 +03:00

11 lines
228 B
Meson

test_sources = files(
'test_rpc.cpp',
'test_integration.cpp'
)
test_exe = executable('unit_tests',
test_sources,
dependencies : [cloud_point_rpc_dep, gtest_dep, gtest_main_dep, gmock_dep])
test('unit_tests', test_exe)