在 Ubuntu 上使用 PhpStorm 进行 PHP 单元测试,你需要遵循以下步骤:
composer require --dev phpunit/phpunit
phpunit.xml
的文件。这个文件将包含 PHPUnit 的配置信息。你可以根据需要自定义配置。例如:<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php" colors="true">
<testsuites>
<testsuite name="My Test Suite">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix="Entity.php">./src</directory>
</whitelist>
</filter>
</phpunit>
在 PhpStorm 中配置 PHPUnit:打开 PhpStorm,然后依次点击 “File” > “Settings” (或 “PhpStorm” > “Preferences”,如果你使用的是 macOS)。在设置窗口中,导航到 “Tools” > “PHP” > “Testing”。在 “PHPUnit” 部分,选择 “Use configuration file” 并指定你的 phpunit.xml
文件的路径。
编写测试用例:在你的项目中创建一个名为 tests
的目录,并在其中编写测试用例。例如,你可以创建一个名为 ExampleTest.php
的文件,其中包含一个名为 testExample
的测试方法:
<?php
use PHPUnit\Framework\TestCase;
class ExampleTest extends TestCase
{
public function testExample()
{
$this->assertTrue(true);
}
}
vendor/bin/phpunit
这将运行你的单元测试,并显示测试结果。
以上步骤应该可以帮助你在 Ubuntu 上使用 PhpStorm 进行 PHP 单元测试。根据你的需求,你可以调整配置和编写更多的测试用例。
亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>