Package org.wiztools.restclient.bean

Examples of org.wiztools.restclient.bean.TestResult


                // Add response extension:
                final String ext = this.saveResponseBody? ".body": ".rcs";
                final File resFile = new NonExistFileGenerator(outDir, outFilePrefix, ext).getFile();
               
                // Test:
                TestResult testResult = response.getTestResult();
                if(testResult != null){
                    failureCount += testResult.getFailureCount();
                    errorCount += testResult.getErrorCount();
                    runCount += testResult.getRunCount();
                }
                if(this.saveResponseBody) {
                    FileUtil.writeBytes(resFile, response.getResponseBody());
                }
                else {
View Full Code Here

TOP

Related Classes of org.wiztools.restclient.bean.TestResult

Copyright © 2018 www.massapicom. 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.