unittest.php 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?php defined('SYSPATH') or die('No direct script access.');
  2. return array(
  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' => array(
  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' => array(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. // Does what it says on the tin
  20. // Blacklisted files won't be included in code coverage reports
  21. // If you use a whitelist then the blacklist will be ignored
  22. 'use_blacklist' => FALSE,
  23. // List of individual files/folders to blacklist
  24. 'blacklist' => array(
  25. ),
  26. );