multiple pages(asciinema to atoum) : Add Korean Translation (#3556)

This commit is contained in:
Proscream
2019-11-27 03:49:10 +09:00
committed by Starbeamrainbowlabs
parent a63157edc1
commit 3c65624896
8 changed files with 215 additions and 0 deletions

36
pages.ko/common/atoum.md Normal file
View File

@@ -0,0 +1,36 @@
# atoum
> PHP를 위한 단순하고 현대적이며 직관적인 단위 테스트 프레임워크.
> 더 많은 정보: <http://atoum.org>.
- 설정 파일 초기화:
`atoum --init`
- 모든 테스트 실행:
`atoum`
- 특정 설정 파일을 사용한 테스트 실행:
`atoum -c {{경로/파일명}}`
- 특정 테스트파일 실행:
`atoum -f {{경로/파일명}}`
- 특정 테스트 디렉토리 실행:
`atoum -d {{경로/디렉토리명}}`
- 특정 namespace 아래 있는 모든 테스트 실행:
`atoum -ns {{namespace}}`
- 특정 태그를 갖고 테스트 실행
`atoum -t {{태그}}`
- 테스트를 실행하기 전에 사용자 지정 부트스트랩 파일을 로드:
`atoum --bootstrap-file {{경로/파일명}}`