1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.ko/common/infection.md
HoJeong Im 8d1a01fd45
infection, influx, info, initdb, inkmake, inkscape: add Korean translation (#14692)
* infection, influx, info, initdb, inkmake, inkscape: add Korean translation

* Update pages.ko/common/inkscape.md

Co-authored-by: Chooooo <contact@choo.ooo>

---------

Co-authored-by: Chooooo <contact@choo.ooo>
2024-11-08 15:54:24 +09:00

849 B

infection

PHP용 코드 변경 테스팅 프레임워크. 더 많은 정보: https://infection.github.io.

  • 구성 파일을 사용하여 코드를 분석 (또는 존재하지 않는 경우 새롭게 생성):

infection

  • 특정 수의 스레드를 사용:

infection --threads {{스레드_수}}

  • 최소 MSI(Mutation Score Indicator)를 지정:

infection --min-msi {{백분율}}

  • 최소 적용 코드 MSI를 지정:

infection --min-covered-msi {{백분율}}

  • 특정 테스트 프레임워크를 사용 (기본값은 PHPUnit):

infection --test-framework {{phpunit|phpspec}}

  • 테스트에 포함된 코드 줄만 변경:

infection --only-covered

  • 적용된 코드 변경을 주는 부분을 표시:

infection --show-mutations

  • 로그 상세 수준을 지정:

infection --log-verbosity {{default|all|none}}