在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用unit-test-skill
星标2
分支0
更新时间2026年3月29日 14:29
do unit tests for the whole codebase
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
do unit tests for the whole codebase
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | unit-test-skill |
| description | do unit tests for the whole codebase |
| user-invocable | true |
test_output.txt. in the root directory of the codebase to avoid confusion with the new output.$ powershell -Command "Set-Location 'D:\dev\github\dal.cpp'; Start-Process -FilePath '.\build_windows.bat' -Wait -NoNewWindow -RedirectStandardOutput 'test_output.txt'" 2>&1
test_output.txt file generated in the root directory of the codebase. The output should look like:...
[----------] 2 tests from ModelTest
[ RUN ] ModelTest.TestBlackScholesModelData
[ OK ] ModelTest.TestBlackScholesModelData (0 ms)
[ RUN ] ModelTest.TestDupireModelData
[ OK ] ModelTest.TestDupireModelData (0 ms)
[----------] 2 tests from ModelTest (0 ms total)
[----------] Global test environment tear-down
[==========] 409 tests from 46 test suites ran. (9497 ms total)
[ PASSED ] 409 tests.
$ bash ./build_linux.sh > test_output.txt 2>&1
test_output.txt file generated in the root directory of the codebase. Output should be like this:...
[----------] 2 tests from ModelTest
[ RUN ] ModelTest.TestBlackScholesModelData
[ OK ] ModelTest.TestBlackScholesModelData (0 ms)
[ RUN ] ModelTest.TestDupireModelData
[ OK ] ModelTest.TestDupireModelData (0 ms)
[----------] 2 tests from ModelTest (0 ms total)
[----------] Global test environment tear-down
[==========] 409 tests from 46 test suites ran. (9497 ms total)
[ PASSED ] 409 tests.