在PHP CodeIgniter中進行單元測試一般通過使用PHPUnit來實現。以下是一個簡單的示例:
composer require --dev phpunit/phpunit
<?php
use PHPUnit\Framework\TestCase;
class ExampleTest extends TestCase
{
public function testSum()
{
$this->assertEquals(5, 2 + 3);
}
}
<phpunit bootstrap="index.php"
colors="true"
backupGlobals="false"
backupStaticAttributes="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuite name="CodeIgniter Unit Tests">
<directory suffix="Test.php">./</directory>
</testsuite>
</testsuites>
</phpunit>
vendor/bin/phpunit
這樣就可以在PHP CodeIgniter中進行單元測試了。可以編寫更復雜的測試用例,以確保應用程序的各個部分都能正常工作。