
com.google.test.metric.report.diff.html Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testability-explorer Show documentation
Show all versions of testability-explorer Show documentation
A tool that looks at java bytecodes and helps you
identify hard to test code.
The newest version!
<#function compare oldValue newValue>
<#if oldValue == newValue><#return "same"/>#if>
<#if oldValue lt newValue><#return "worse"/>#if>
<#if oldValue gt newValue><#return "better"/>#if>
#function>
<#macro sourceLink url text="" baseUrl="">
<#if text?has_content>
<#if baseUrl?has_content>
${text}
<#else/>
${text}
#if>
<#else/>
#if>
#macro>
<#macro oldSourceLink url text="">
<@sourceLink url text oldSourceUrl/>
#macro>
<#macro newSourceLink url text="">
<@sourceLink url text newSourceUrl/>
#macro>
Testability Diff
Testability Diff Report
(Generated on: ${currentTime?datetime})
Class Summary Old New Δ
<#list classDiffs as classDiff>
${classDiff.className}
<@oldSourceLink classDiff.className?html classDiff.oldMetric />
<@newSourceLink classDiff.className?html classDiff.newMetric />
${classDiff.delta}
#list>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy