1 # ------------------------------------------------------------- 2 # *************** DO NOT EDIT THIS FILE *********************** 3 # 4 # for user-editable property overrides use one of these options: 5 # 6 # (1) option-specific command line overrides, e.g. 7 # -Dreport.txt.out.file=coverage.txt 8 # 9 # (2) '-p <options file>' command line option, 10 # 11 # (3) 'emma.properties' resource placed somewhere in the classpath 12 # (e.g., in <jre dir>\classes directory -- note that it does 13 # not exist by default), 14 # 15 # (4) '-Demma.*' JVM options, e.g. 16 # -Demma.report.txt.out.file=coverage.txt 17 # 18 # (5) 'emma.properties' JVM option pointing to a properties file 19 # -Demma.properties=./myproperties.txt 20 # ------------------------------------------------------------- 21 22 # ------------------------------------------------------------- 23 # logging properties: 24 25 verbosity.level: info 26 27 # classloading properties: 28 29 #clsload.forced_delegation_filter: 30 #clsload.through_delegation_filter: -* 31 32 # ------------------------------------------------------------- 33 34 # instrumentation properties: 35 36 instr.exclude_synthetic_methods: true 37 instr.exclude_bridge_methods: true 38 instr.do_suid_compensation: true 39 40 # ------------------------------------------------------------- 41 42 # apprunner session data output properties: 43 44 session.out.file: coverage.es 45 session.out.merge: true 46 47 # ------------------------------------------------------------- 48 49 # runtime coverage data output properties: 50 51 coverage.out.file: /sdcard/coverage.ec 52 coverage.out.merge: true 53 54 # ------------------------------------------------------------- 55 56 # instr metadata output properties: 57 58 metadata.out.file: coverage.em 59 metadata.out.merge: true 60 61 # ------------------------------------------------------------- 62 63 # common report defaults: 64 65 report.units: instr 66 report.depth: method 67 report.columns: name,class,method,block,line 68 report.sort: +block,+name,+method,+class 69 report.metrics: method:70,block:80,line:80,class:100 70 71 # ------------------------------------------------------------- 72 # txt report properties: 73 74 report.txt.depth: all 75 report.txt.columns: class,method,block,line,name 76 report.txt.out.file: coverage.txt 77 78 # ------------------------------------------------------------- 79 # html report properties: 80 81 #report.html.out.dir: coverage 82 report.html.out.file: coverage/index.html 83 report.html.out.encoding: ISO-8859-1 84 85 # ------------------------------------------------------------- 86 # xml report properties: 87 88 report.xml.out.file: coverage.xml 89 report.xml.out.encoding: UTF-8 90 # ------------------------------------------------------------- 91 # end of file 92