score-back/tests/meson.build
Artur Mukhamadiev b85fa6fc76
Some checks failed
Verification / Is-Buildable (push) Failing after 3m12s
[tests] unit tests to cover edge cases
2026-04-21 16:54:21 +03:00

21 lines
533 B
Meson

test_sources = files(
'test_rpc.cpp',
'test_rpc_edge_cases.cpp',
'test_integration.cpp',
'test_tcp.cpp',
'test_tcp_edge_cases.cpp',
'test_cli.cpp',
'test_c_api.cpp',
'test_c_api_edge_cases.cpp',
'test_base64.cpp',
'test_base64_edge_cases.cpp',
'test_service.cpp',
'test_serialize.cpp'
)
test_exe = executable('unit_tests',
test_sources,
dependencies : [cloud_point_rpc_dep, cloud_point_rpc_cli_dep, cloud_point_rpc_test_dep, json_dep, gtest_dep, gtest_main_dep, gmock_dep])
test('unit_tests', test_exe)