unittest.php 720 B

12345678910111213141516171819202122232425
  1. <?php
  2. return [
  3. // If you don't use a whitelist then only files included during the request will be counted
  4. // If you do, then only whitelisted items will be counted
  5. 'use_whitelist' => TRUE,
  6. // Items to whitelist, only used in cli
  7. 'whitelist' => [
  8. // Should the app be whitelisted?
  9. // Useful if you just want to test your application
  10. 'app' => TRUE,
  11. // Set to array(TRUE) to include all modules, or use an array of module names
  12. // (the keys of the array passed to Kohana::modules() in the bootstrap)
  13. // Or set to FALSE to exclude all modules
  14. 'modules' => [TRUE],
  15. // If you don't want the Kohana code coverage reports to pollute your app's,
  16. // then set this to FALSE
  17. 'system' => TRUE,
  18. ],
  19. ];