Produced by Araxis Merge on 10/5/2018 9:06:51 PM Central Daylight Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.
| # | Location | File | Last Modified |
|---|---|---|---|
| 1 | MHEDP3_VAOS_VATS_SM_Sept2018.zip\VATS 2.2.0\var-utility-resources-2.2.0.zip | generate-code-coverage-report.xml | Fri Jun 1 01:37:09 2018 UTC |
| 2 | MHEDP3_VAOS_VATS_SM_Sept2018.zip\VATS 2.2.0\var-utility-resources-2.2.0.zip | generate-code-coverage-report.xml | Fri Oct 5 16:57:24 2018 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 2 | 262 |
| Changed | 1 | 4 |
| Inserted | 0 | 0 |
| Removed | 0 | 0 |
| Whitespace | |
|---|---|
| Character case | Differences in character case are significant |
| Line endings | Differences in line endings (CR and LF characters) are ignored |
| CR/LF characters | Not shown in the comparison detail |
No regular expressions were active.
| 1 | <?xml | |
| 2 | version="1 .0" | |
| 3 | encoding=" UTF-8" | |
| 4 | ?> | |
| 5 | <project | |
| 6 | name="Ant Task to wr ite JaCoCo Report" | |
| 7 | default="r eport" | |
| 8 | xmlns:jaco co="antlib :org.jacoc o.ant" | |
| 9 | > | |
| 10 | ||
| 11 | ||
| 12 | <taskdef | |
| 13 | uri="antli b:org.jaco co.ant" | |
| 14 | resource=" org/jacoco /ant/antli b.xml" | |
| 15 | > | |
| 16 | ||
| 17 | <classpath | |
| 18 | path="${en v.VAGRANT_ DIR}/jacoc o/lib/jaco coant.jar" | |
| 19 | /> | |
| 20 | ||
| 21 | </taskdef> | |
| 22 | ||
| 23 | ||
| 24 | <target | |
| 25 | name="dele teReport" | |
| 26 | depends="r eport.chec k" | |
| 27 | if="dir.ex ists" | |
| 28 | > | |
| 29 | ||
| 30 | <echo> | |
| 31 | deleting r eport dire ctory..... .. | |
| 32 | </echo> | |
| 33 | ||
| 34 | <delete | |
| 35 | dir="${env .VAGRANT_D IR}/jacoco /${env.ROO T_NAME}/re port" | |
| 36 | /> | |
| 37 | ||
| 38 | </target> | |
| 39 | ||
| 40 | ||
| 41 | <target | |
| 42 | name="repo rt.check" | |
| 43 | > | |
| 44 | ||
| 45 | <condition | |
| 46 | property=" dir.exists " | |
| 47 | > | |
| 48 | ||
| 49 | <available | |
| 50 | file="${en v.VAGRANT_ DIR}/jacoc o/${env.RO OT_NAME}/r eport" | |
| 51 | type="dir" | |
| 52 | /> | |
| 53 | ||
| 54 | </conditio n> | |
| 55 | ||
| 56 | </target> | |
| 57 | ||
| 58 | ||
| 59 | <target | |
| 60 | name="dump " | |
| 61 | > | |
| 62 | ||
| 63 | <jacoco:du mp | |
| 64 | address=" IP " | |
| 65 | PORT="PORT " | |
| 66 | reset="tru e" | |
| 67 | append="tr ue" | |
| 68 | destfile=" ${env.VAGR ANT_DIR}/j acoco/${en v.ROOT_NAM E}/jacoco. exec" | |
| 69 | /> | |
| 70 | ||
| 71 | </target> | |
| 72 | ||
| 73 | ||
| 74 | <target | |
| 75 | name="repo rt" | |
| 76 | depends="d eleteRepor t,resource Integratio nTest,dump " | |
| 77 | > | |
| 78 | ||
| 79 | ||
| 80 | <jacoco:re port> | |
| 81 | ||
| 82 | <!-- execu tion data as input f or report generation --> | |
| 83 | ||
| 84 | <execution data> | |
| 85 | ||
| 86 | <file | |
| 87 | file="${en v.VAGRANT_ DIR}/jacoc o/${env.RO OT_NAME}/j acoco.exec " | |
| 88 | /> | |
| 89 | ||
| 90 | </executio ndata> | |
| 91 | ||
| 92 | <!-- the c lass files of the me asured app lication - -> | |
| 93 | ||
| 94 | <structure | |
| 95 | name="${en v.ROOT_NAM E}" | |
| 96 | > | |
| 97 | ||
| 98 | <classfile s> | |
| 99 | ||
| 100 | <fileset | |
| 101 | dir="${env .ROOT_DIR} /${env.SER VICE_NAME} /build/cla sses/main" | |
| 102 | /> | |
| 103 | ||
| 104 | </classfil es> | |
| 105 | ||
| 106 | ||
| 107 | <!-- speci fying the source fil es allows to view th e covered code --> | |
| 108 | ||
| 109 | <sourcefil es | |
| 110 | encoding=" UTF-8" | |
| 111 | > | |
| 112 | ||
| 113 | <fileset | |
| 114 | dir="${env .ROOT_DIR} /${env.SER VICE_NAME} /src/main/ java" | |
| 115 | /> | |
| 116 | ||
| 117 | </sourcefi les> | |
| 118 | ||
| 119 | </structur e> | |
| 120 | ||
| 121 | ||
| 122 | <!-- write HTML repo rt --> | |
| 123 | ||
| 124 | <html | |
| 125 | destdir="$ {env.VAGRA NT_DIR}/ja coco/${env .ROOT_NAME }/report" | |
| 126 | /> | |
| 127 | ||
| 128 | ||
| 129 | </jacoco:r eport> | |
| 130 | ||
| 131 | </target> | |
| 132 | ||
| 133 | </project> |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.