Author: sebb
Date: Thu Mar 17 01:33:02 2016
New Revision: 1735356

URL: http://svn.apache.org/viewvc?rev=1735356&view=rev
Log:
Sample Result SaveConfig Dialog is generated in random order
Use order from http://jmeter.apache.org/usermanual/listeners.html#csvlogformat
Bugzilla Id: 59171

Modified:
    
jmeter/trunk/src/core/org/apache/jmeter/samplers/SampleSaveConfiguration.java

Modified: 
jmeter/trunk/src/core/org/apache/jmeter/samplers/SampleSaveConfiguration.java
URL: 
http://svn.apache.org/viewvc/jmeter/trunk/src/core/org/apache/jmeter/samplers/SampleSaveConfiguration.java?rev=1735356&r1=1735355&r2=1735356&view=diff
==============================================================================
--- 
jmeter/trunk/src/core/org/apache/jmeter/samplers/SampleSaveConfiguration.java 
(original)
+++ 
jmeter/trunk/src/core/org/apache/jmeter/samplers/SampleSaveConfiguration.java 
Thu Mar 17 01:33:02 2016
@@ -433,36 +433,36 @@ public class SampleSaveConfiguration imp
      * List of saveXXX/setXXX(boolean) methods which is used to build the 
Sample Result Save Configuration dialog.
      * New method names should be added at the end so that existing layouts 
are not affected.
      */
-    // The current order is derived from 
http://jmeter.apache.org/usermanual/listeners.html#sample_configuration
-    // TODO this is not a particularly sensible order; fix and update the 
screenshot(s)
+    // The current order is derived from 
http://jmeter.apache.org/usermanual/listeners.html#csvlogformat
+    // TODO this may not be the ideal order; fix further and update the 
screenshot(s)
     public static final List<String> SAVE_CONFIG_NAMES = 
Collections.unmodifiableList(Arrays.asList(new String[]{
         "AsXml",
         "FieldNames", // CSV
-        "AssertionResultsFailureMessage",
-        "ResponseHeaders", // XML
-        "RequestHeaders", // XML
-        "Assertions", // XML
-        "Code",
-        "DataType",
-        "Encoding",
+        "Timestamp",
+        "Time", // elapsed
         "Label",
-        "Latency",
-        "Message",
-        "ResponseData", // XML
-        "SamplerData", // XML
-        "Subresults", // XML
-        "Success",
+        "Code", // Response Code
+        "Message", // Response Message
         "ThreadName",
-        "Time",
-        "Timestamp",
-        "Url",
+        "DataType",
+        "Success",
+        "AssertionResultsFailureMessage",
         "Bytes",
+        "ThreadCounts", // grpThreads and allThreads
+        "Url",
         "FileName",
-        "ThreadCounts",
-        "SampleCount",
+        "Latency",
+        "ConnectTime",
+        "Encoding",
+        "SampleCount", // Sample and Error Count
         "Hostname",
         "IdleTime",
-        "ConnectTime",
+        "RequestHeaders", // XML
+        "SamplerData", // XML
+        "ResponseHeaders", // XML
+        "ResponseData", // XML
+        "Subresults", // XML
+        "Assertions", // XML
     }));
     
     public SampleSaveConfiguration() {


Reply via email to