[ 
https://jira.codehaus.org/browse/MCHRONOS-4?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Stephen Connolly updated MCHRONOS-4:
------------------------------------

    Fix Version/s:     (was: 1.0)
                   1.0-SNAPSHOT
    
> Should support sample group order type in the generated JMeter report
> ---------------------------------------------------------------------
>
>                 Key: MCHRONOS-4
>                 URL: https://jira.codehaus.org/browse/MCHRONOS-4
>             Project: Mojo's Chronos Maven Plugins
>          Issue Type: Bug
>            Reporter: Bill Zhang
>            Assignee: Kent Sølvsten
>             Fix For: 1.0-SNAPSHOT
>
>
> It seems no order type can be specified whiling creating JMeter report with 
> 'report' Maven goal. 
> The issue is in 
> org.codehaus.mojo.chronos.responsetime.GroupedResponsetimeSamples Java class. 
> The method getSampleGroups() returns a list of Sample Groups from a HashMap 
> object 'sampleGroupsByName'. sampleGroupsByName was initialized as a HashMap 
> instead of a SortedMap. To support sample group order by Name, just simply 
> replace 
>     private final Map sampleGroupsByName = new HashMap();
> with 
>     private final Map sampleGroupsByName = new TreeMap();
> Or, if we want to use original execution order, we can create a Comparator 
> based the index of ResponsetimeSampleGroup.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://jira.codehaus.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira



---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Reply via email to