티스토리 뷰
php unit 테스트시 예외처리에 대한 테스트 확인 방법입니다.
<?php
Class SomeTest extends Tests
{
/**
* @test
* @expectedException SomeException
* @return void
*/
function some_test(): void
{
$this->exceptException(SomeException::class);
// and some_actions...
}
}
Time: 00:00.437, Memory: 6.00 MB
OK (1 test, 1 assertion)
#TL;DR
phpUnit 9.5
$this->expectException(string $exceptionClassName);
$this->expectExceptionCode(int|string $code);
$this->expectExceptionMessage(string $message);
$this->expectExceptionMessageMatches(string $regularExpression);
$this->expectExceptionObject(\Exception $exceptionObject);
참고:
https://stackoverflow.com/questions/5683592/phpunit-assert-that-an-exception-was-thrown
https://phpunit.de/manual/6.5/en/writing-tests-for-phpunit.html#writing-tests-for-phpunit.exceptions
https://backendtea.com/post/phpunit-exception-test/
'공부합시다 > php' 카테고리의 다른 글
l5-swagger Response에 Schema + Property 추가하기 (0) | 2024.08.29 |
---|---|
Laravel Carbon으로 addMonth 오류 (0) | 2024.04.05 |
Laravel 다중 DB 사용시 테스트 트랜잭션 사용하기. (0) | 2023.11.13 |
Laravel auth session + token 동시에 사용하기 (0) | 2023.09.25 |
라라벨 하나의 Router에서 여러개 인증 사용하기 (0) | 2023.09.14 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- l5-swagger-response
- addMonthWithoutOverflow
- laravel-kafka
- php-laravel
- MySQL
- aaa패턴
- redis
- 정규식
- 메일
- 정의
- 라라벨
- graphql
- observer 매개변수 전달하기
- php
- graphql-php
- Laravel
- POP3
- 테스트_다중트랜잭션
- bitwarden-cli
- laravel-test
- addMonth
- l5-swagger
- vim
- django
- Python
- password-manager
- exception-test
- eloquent-observer
- 자바스크립트
- session+token authorize
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함