您如何将PHPUnit与VSCode一起使用?

时间:2019-07-08 03:24:52

标签: php visual-studio-code phpunit

我已经使用Netbeans完成了一些PHPUnit测试,但是无法使用最新版本(PHPUnit 8)。所以我想在VSCode中尝试一下。

是否有任何建议或指向教程的链接,以使它们协同工作?

1 个答案:

答案 0 :(得分:0)

您需要在tasks.json目录中的.vscode文件中定义一个自定义任务。自定义任务可以是这样的:

{
    "version": "2.0.0",
    "tasks": [
        {
            "label": "Run tests",
            "type": "shell",
            "command": "phpunit",
            "args": ["--stop-on-error"],
            "group": "test",
            "presentation": {
                "reveal": "always",
                "panel": "new"
            }
        }
    ]
}

在文档中详细了解:https://code.visualstudio.com/docs/editor/tasks#_custom-tasks