Package com.simoncat.net

Examples of com.simoncat.net.TestResult


      catch(IOException io){
        e=io;
        io.printStackTrace();
      }
      finally{
        TestResult tr = new TestResult(r[i],statusLine,e);
        results.add(tr);
      }
      i++;
    }
      return R;
View Full Code Here


    }
      return R;
  }
 
  public TestResult[] getResults(){
    TestResult tr[] = new TestResult[results.size()];
    results.toArray(tr);
    return tr;
  }
View Full Code Here

TOP

Related Classes of com.simoncat.net.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.