Skip to content

Commit

Permalink
feat: add test
Browse files Browse the repository at this point in the history
  • Loading branch information
YaoerWu committed Feb 13, 2025
1 parent 1133226 commit cb053ba
Show file tree
Hide file tree
Showing 8 changed files with 1,043 additions and 2 deletions.
32 changes: 30 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,36 @@
{
"type": "lldb",
"request": "launch",
"name": "Debug",
"program": "${workspaceFolder}/<executable file>",
"name": "Debug unit tests in library 'image_autowsgrs'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=image-autowsgrs"
],
},
"args": [
"--nocapture"
],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in library 'vessel_type'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=vessel-type"
],
"filter": {
"name": "vessel_type",
"kind": "lib"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
Expand Down
Loading

0 comments on commit cb053ba

Please sign in to comment.