Add tests for Server (#34)

This commit is contained in:
ykiko
2025-01-13 23:14:10 +08:00
committed by GitHub
parent b0363b5b76
commit 70f29147d5
53 changed files with 1157 additions and 730 deletions

13
.vscode/launch.json vendored
View File

@@ -24,11 +24,22 @@
],
"preLaunchTask": "Build Release"
},
{
"type": "lldb",
"request": "launch",
"name": "Integration Test",
"program": "${workspaceFolder}/build/bin/integration_tests",
"args": [
"--execute=${workspaceFolder}/build/bin/clice",
"--source=${workspaceFolder}/tests",
],
"preLaunchTask": "Build Dev"
},
{
"type": "lldb",
"request": "launch",
"name": "Test",
"program": "${workspaceFolder}/build/bin/clice-tests",
"program": "${workspaceFolder}/build/bin/unit_tests",
"args": [
"--test-dir=${workspaceFolder}/tests",
"--gtest_filter=${input:filter}"