add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,20 @@
# phpunit
> PHPUnit 命令行测试运行器。
> 更多信息:<https://phpunit.de>。
- 在当前目录中运行测试。注意:需要你有一个 'phpunit.xml' 文件:
`phpunit`
- 在特定文件中运行测试:
`phpunit {{path/to/TestFile.php}}`
- 运行带有指定分组注释的测试:
`phpunit --group {{name}}`
- 运行测试并生成 HTML 格式的覆盖率报告:
`phpunit --coverage-html {{path/to/directory}}`