/modules/unittest/config/unittest.php
PHP | 37 lines | 15 code | 8 blank | 14 comment | 0 complexity | 79f118c1c566e7990433373045d8d015 MD5 | raw file
1<?php defined('SYSPATH') or die('No direct script access.'); 2 3return array( 4 5 // If you don't use a whitelist then only files included during the request will be counted 6 // If you do, then only whitelisted items will be counted 7 'use_whitelist' => TRUE, 8 9 // Items to whitelist, only used in cli 10 'whitelist' => array( 11 12 // Should the app be whitelisted? 13 // Useful if you just want to test your application 14 'app' => TRUE, 15 16 // Set to array(TRUE) to include all modules, or use an array of module names 17 // (the keys of the array passed to Kohana::modules() in the bootstrap) 18 // Or set to FALSE to exclude all modules 19 'modules' => FALSE, 20 21 // If you don't want the Kohana code coverage reports to pollute your app's, 22 // then set this to FALSE 23 'system' => TRUE, 24 ), 25 26 // Does what it says on the tin 27 // Blacklisted files won't be included in code coverage reports 28 // If you use a whitelist then the blacklist will be ignored 29 'use_blacklist' => FALSE, 30 31 // List of individual files/folders to blacklist 32 'blacklist' => array( 33 ), 34 'test_blacklist' => array( 35 'tests/cache', 36 ) 37);