파일 없다면 생성
-------------------------------------------------------------------------------
./phpunit.xml
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
stopOnFailure="false"
cacheDirectory=".phpunit.cache"
displayDetailsOnTestsThatTriggerWarnings="true"
displayDetailsOnTestsThatTriggerDeprecations="true"
displayDetailsOnTestsThatTriggerErrors="true"
displayDetailsOnTestsThatTriggerNotices="true"
displayDetailsOnIncompleteTests="true"
displayDetailsOnSkippedTests="true">
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
<testsuite name="Feature">
<directory suffix="Test.php">./tests/Feature</directory>
</testsuite>
<testsuite name="Browser">
<directory suffix="Test.php">./tests/Browser</directory>
</testsuite>
</testsuites>
<php>
<!-- Disable Code Coverage Warning -->
<env name="XDEBUG_MODE" value="off"/>
</php>
<!-- Only include source files that we want to analyze -->
<source>
<include>
<directory suffix=".php">./app</directory>
</include>
<exclude>
<directory suffix=".php">./app/Providers</directory>
<directory suffix=".php">./app/Exceptions</directory>
<file>./app/Console/Kernel.php</file>
<file>./app/Http/Kernel.php</file>
</exclude>
</source>
</phpunit>
-------------------------------------------------------------------------------
./tests/CreatesApplication.php
<?php
namespace Tests;
use Illuminate\Contracts\Console\Kernel;
trait CreatesApplication
{
/**
* Creates the application.
*
* @return \Illuminate\Foundation\Application
*/
public function createApplication()
{
$app = require __DIR__ . '/../bootstrap/app.php';
$app->make(Kernel::class)->bootstrap();
return $app;
}
}
-------------------------------------------------------------------------------
./tests/TestCase.php
<?php
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
use CreatesApplication;
}
-------------------------------------------------------------------------------
테스트 파일
./tests/SimpleTest.php
<?php
namespace Tests\Feature;
use Tests\TestCase;
use Illuminate\Foundation\Testing\RefreshDatabase;
class SimpleTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function test_example()
{
$this->assertTrue(true);
}
}
-------------------------------------------------------------------------------
테스트 실행
php artisan test tests/SimpleTest.php
반응형
'Code > PHP' 카테고리의 다른 글
preg_replace 등에서 유니코드 처리, 이스케이핑 (0) | 2024.08.27 |
---|---|
재부팅시 라라벨 에러 로그 발생하는 문제 해결 방법 (0) | 2023.12.27 |
[php] php-fpm, pm.max_children 적정 수 설정 (0) | 2023.12.15 |
[php 웹보안] 이중 인코딩( Double encoding) 공격 방법과 대책 (0) | 2022.11.23 |
php 8.1 설치 (ubuntu) (0) | 2022.08.03 |