File: emma_default.properties

package info (click to toggle)
emma-coverage 2.0.5312%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch, wheezy
  • size: 2,000 kB
  • ctags: 3,667
  • sloc: java: 23,109; xml: 414; makefile: 22
file content (91 lines) | stat: -rw-r--r-- 2,667 bytes parent folder | download | duplicates (3)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# -------------------------------------------------------------
# *************** DO NOT EDIT THIS FILE ***********************
#
# for user-editable property overrides use one of these options:
#
# (1) option-specific command line overrides, e.g.
#     -Dreport.txt.out.file=coverage.txt
#
# (2) '-p <options file>' command line option,
#
# (3) 'emma.properties' resource placed somewhere in the classpath
#     (e.g., in <jre dir>\classes directory -- note that it does
#     not exist by default),
#
# (4) '-Demma.*' JVM options, e.g.
#     -Demma.report.txt.out.file=coverage.txt
#
# (5) 'emma.properties' JVM option pointing to a properties file
#     -Demma.properties=./myproperties.txt
# -------------------------------------------------------------

# -------------------------------------------------------------
# logging properties:

verbosity.level:	info

# classloading properties:

#clsload.forced_delegation_filter:
#clsload.through_delegation_filter: -*

# -------------------------------------------------------------

# instrumentation properties:

instr.exclude_synthetic_methods:	true
instr.exclude_bridge_methods:		true
instr.do_suid_compensation:		true

# -------------------------------------------------------------

# apprunner session data output properties:

session.out.file:	coverage.es
session.out.merge:	true

# -------------------------------------------------------------

# runtime coverage data output properties:

coverage.out.file:	coverage.ec
coverage.out.merge:	true

# -------------------------------------------------------------

# instr metadata output properties:

metadata.out.file:	coverage.em
metadata.out.merge:	true

# -------------------------------------------------------------

# common report defaults:

report.units:		instr
report.depth:		method
report.columns:		name,class,method,block,line
report.sort:		+block,+name,+method,+class
report.metrics:		method:70,block:80,line:80,class:100

# -------------------------------------------------------------
# txt report properties:

report.txt.depth:	all
report.txt.columns:	class,method,block,line,name
report.txt.out.file:	coverage.txt

# -------------------------------------------------------------
# html report properties:

#report.html.out.dir:	coverage
report.html.out.file:	coverage/index.html
report.html.out.encoding: ISO-8859-1

# -------------------------------------------------------------
# xml report properties:

report.xml.out.file:	coverage.xml
report.xml.out.encoding: UTF-8
# -------------------------------------------------------------
# end of file