25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

29 lines
795 B

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- http://www.phpunit.de/manual/current/en/appendixes.configuration.html -->
  3. <phpunit
  4. backupGlobals = "false"
  5. backupStaticAttributes = "false"
  6. colors = "true"
  7. convertErrorsToExceptions = "true"
  8. convertNoticesToExceptions = "true"
  9. convertWarningsToExceptions = "true"
  10. processIsolation = "false"
  11. stopOnFailure = "false"
  12. syntaxCheck = "false"
  13. >
  14. <testsuites>
  15. <testsuite name="Project Test Suite">
  16. <directory>tests</directory>
  17. </testsuite>
  18. </testsuites>
  19. <!--
  20. <php>
  21. <server name="KERNEL_DIR" value="/path/to/your/app/" />
  22. </php>
  23. -->
  24. </phpunit>