Package com.sun.faban.driver

Examples of com.sun.faban.driver.Result


     * Obtains the results of this ContentSizeStats as to be reported.
     * @return The result elements for each metric.
     */
    public Element[] getResults() {
        Element[] e = new Element[sumContentSize.length];
        Result r = Result.getInstance();
        String[] opsNames = r.getOpsNames();
        int[] counts = r.getOpsCountSteady();
        for (int i = 0; i < e.length; i++) {
            e[i] = new Element();
            e[i].description = "Average Content Size for " + opsNames[i];
            if (counts[i] != 0)
                e[i].result = String.format("%.2f",
View Full Code Here

TOP

Related Classes of com.sun.faban.driver.Result

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.