All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.test.metric.report.diff.html Maven / Gradle / Ivy

The newest version!
<#function compare oldValue newValue>
  <#if oldValue == newValue><#return "same"/>
  <#if oldValue lt newValue><#return "worse"/>
  <#if oldValue gt newValue><#return "better"/>

<#macro sourceLink url text="" baseUrl="">
  <#if text?has_content>
    <#if baseUrl?has_content>
        ${text}
      <#else/>
        ${text}
    
  <#else/>
     
  

<#macro oldSourceLink url text="">
  <@sourceLink url text oldSourceUrl/>

<#macro newSourceLink url text="">
  <@sourceLink url text newSourceUrl/>


  
    Testability Diff
    
  
  
    

Testability Diff Report

(Generated on: ${currentTime?datetime})
<#list classDiffs as classDiff>
Class SummaryOldNewΔ
${classDiff.className} <@oldSourceLink classDiff.className?html classDiff.oldMetric /> <@newSourceLink classDiff.className?html classDiff.newMetric /> ${classDiff.delta}
<#list classDiffs as classDiff> <#list classDiff.methodDiffs as methodDiff>
Class DetailOldNewΔ
${classDiff.className} <@oldSourceLink classDiff.className?html classDiff.oldMetric /> <@newSourceLink classDiff.className?html classDiff.newMetric /> ${classDiff.delta}
${methodDiff.methodName} ${methodDiff.oldMetric!} ${methodDiff.newMetric!} ${methodDiff.delta}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy