Пример #1
0
  /**
   * Transforms the Collection of SystemUnderTests into a Vector of SystemUnderTests parameters.
   *
   * @param suts
   * @return the Collection of SystemUnderTests into a Vector of SystemUnderTests parameters
   */
  public static Vector<Object> toXmlRpcSystemUnderTestsParameters(
      Collection<SystemUnderTest> suts) {
    Vector<Object> sutsParams = new Vector<Object>();
    for (SystemUnderTest sut : suts) {
      sutsParams.add(sut.marshallize());
    }

    return sutsParams;
  }