vscode-phpunit icon indicating copy to clipboard operation
vscode-phpunit copied to clipboard

The VS Code Test Explorer extension for PHPUnit

Results 84 vscode-phpunit issues
Sort by recently updated
recently updated
newest added

Can the test be executed with debug mode using xdebug extension to breakpoint test code? I guess in most cases when we have configured XDEBUG it is required only to...

git clone https://github.com/docker/multi-container-app

phpunit can get options when option is before target file `vendor/bin/phpunit --prepend=bootstrap.php Foo.php` but will not work as follows `vendor/bin/phpunit Foo.php --prepend=bootstrap.php` can you change the order in real execute...

The Test Explorer fails to pick up some tests when they extend other tests. For example, I have the following test classes: ```php abstract class FooInterfaceTest extends TestCase { public...

當我在Mac的vsCode安裝這個套件時,我出現了以下問題 ``` php vendor/bin/phpunit /Users/MyName/MyProject/server/tests/Unit/SubBranchArticleRepositoryTest.php --filter=^.*::(testGetSubBranchArticleGroup)( with data set .*)?$ --teamcity --colors=never ❌ Could not open input file: vendor/bin/phpunit ``` 我的系統資訊 Mac I5 - Ventura 13.3.1(a) PHP - 8.2 Laravel...

I have a Laravel Sail project that I am developing with the source living inside WSL. VS Code runs on Windows, and opens the project files through a WSL Remote...

- Issue Type: `Performance` - Extension Name: `vscode-phpunit` - Extension Version: `3.1.3` - OS Version: `Windows_NT x64 10.0.19045` - VS Code version: `1.79.2` :warning: Make sure to **attach** this file...

When running a single test, if the path to the test file contains spaces or special characters, an error occurs. For example: `php vendor/bin/phpunit c:\open project/page/tests/Feature/AuthenticationTest.php --teamcity --colors=never` will return...

I'm trying to run a select test in a Docker container. My `settings.json` looks like: ``` { "phpunit.command": "docker run --rm -t -v ${workspaceFolder}:${workspaceFolder} -u 258006334:258000513 -e XDEBUG_MODE=develop,coverage,debug,trace -e XDEBUG_CONFIG='client_host=10.120.1.1...