PHPUnitManual:C.3

From 흡혈양파의 번역工房
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Appendix C.3 Groups

<groups> element 와 그 자식 element 인 <include>, <exclude>, 그리고 <group> 을 사용하여 test suite 에서 실행할 (실행하지 않을) 테스트 group 을 선택합니다.

<groups>
  <include>
    <group>name</group>
  </include>
  <exclude>
    <group>name</group>
  </exclude>
</groups>


위의 XML 설정 파일은, TextUI test runner 를 다음 인수로 기동합니다.

  • --group name
  • --exclude-group name


Notes