2640. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 5/10/2018 8:40:51 AM 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.

2640.1 Files compared

# Location File Last Modified
1 MHED_APPS_CIF.zip\VAR v4.2.7\var-resources-4.2.7@54bdc2933ef.zip generate-code-coverage-report.xml Thu Apr 19 17:52:30 2018 UTC
2 MHED_APPS_CIF.zip\VAR v4.2.7\var-resources-4.2.7@54bdc2933ef.zip generate-code-coverage-report.xml Thu May 3 17:03:01 2018 UTC

2640.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 262
Changed 1 4
Inserted 0 0
Removed 0 0

2640.3 Comparison options

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

2640.4 Active regular expressions

No regular expressions were active.

2640.5 Comparison detail

  1   <?xml 
  2     version="1 .0" 
  3     encoding=" UTF-8"
  4   ?>
  5   <project 
  6     name="Exam ple Ant Bu ild to wri te 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 /var-resou rces/repor t" 
  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/var-reso urces/repo rt" 
  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/var- resources/ jacoco.exe c"
  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/var-reso urces/jaco co.exec" 
  88        />
  89                     
  90       </executio ndata>
  91                    
  92       <!-- the c lass files  of the me asured app lication - ->
  93                    
  94       <structure  
  95        name="var- resources"
  96       >
  97                         
  98        <classfile s>
  99                              
  100         <fileset 
  101          dir="${env .ROOT_DIR} /VeteranAp pointmentR equestServ ice/build/ classes/ma in"
  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} /VeteranAp pointmentR equestServ ice/src/ma in/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/var-r esources/r eport" 
  126       />
  127      
  128               
  129      </jacoco:r eport>
  130          
  131     </target>
  132    
  133   </project>