Home
last modified time | relevance | path

Searched refs:maxEndDate (Results 1 – 1 of 1) sorted by relevance

/external/testng/src/main/java/org/testng/reporters/
DXMLReporter.java153 Date maxEndDate = null; in getSuiteAttributes() local
162 if (maxEndDate == null || maxEndDate.before(endDate)) { in getSuiteAttributes()
163 maxEndDate = endDate != null ? endDate : startDate; in getSuiteAttributes()
168 if (maxEndDate == null) { in getSuiteAttributes()
169 maxEndDate = minStartDate; in getSuiteAttributes()
171 addDurationAttributes(config, props, minStartDate, maxEndDate); in getSuiteAttributes()
179 Date minStartDate, Date maxEndDate) { in addDurationAttributes() argument
184 String endTime = format.format(maxEndDate); in addDurationAttributes()
185 long duration = maxEndDate.getTime() - minStartDate.getTime(); in addDurationAttributes()