-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathunittest.php
More file actions
executable file
·34 lines (26 loc) · 1.02 KB
/
unittest.php
File metadata and controls
executable file
·34 lines (26 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php defined('SYSPATH') or die('No direct script access.');
return array(
// If you don't use a whitelist then only files included during the request will be counted
// If you do, then only whitelisted items will be counted
'use_whitelist' => TRUE,
// Items to whitelist, only used in cli
'whitelist' => array(
// Should the app be whitelisted?
// Useful if you just want to test your app
'app' => TRUE,
// Set to array(TRUE) to include all modules, or use an array of module names
// (the keys of the array passed to Kohana::modules() in the bootstrap)
// Or set to FALSE to exclude all modules
'modules' => array(TRUE),
// If you don't want the Kohana code coverage reports to pollute your app's,
// then set this to FALSE
'system' => TRUE,
),
// Does what it says on the tin
// Blacklisted files won't be included in code coverage reports
// If you use a whitelist then the blacklist will be ignored
'use_blacklist' => FALSE,
// List of individual files/folders to blacklist
'blacklist' => array(
),
);