Package com.eviware.soapui.impl.wsdl.loadtest.data.actions

Examples of com.eviware.soapui.impl.wsdl.loadtest.data.actions.ExportStatisticsAction.exportToFile()


    {
      ensureOutputFolder( loadTest );
      statisticsFileName = getAbsoluteOutputFolder( loadTest ) + File.separator + statisticsFileName;
    }

    int cnt = exportStatisticsAction.exportToFile( new File( statisticsFileName ) );
    log.info( "Exported " + cnt + " statistics to [" + statisticsFileName + "]" );
  }

  private void exportLog( WsdlLoadTest loadTest ) throws IOException
  {
View Full Code Here


        if (getOutputFolder() != null) {
            ensureOutputFolder(loadTest);
            statisticsFileName = getAbsoluteOutputFolder(loadTest) + File.separator + statisticsFileName;
        }

        int cnt = exportStatisticsAction.exportToFile(new File(statisticsFileName));
        log.info("Exported " + cnt + " statistics to [" + statisticsFileName + "]");
    }

    private void exportLog(WsdlLoadTest loadTest) throws IOException {
        // export log first
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.