Example #1
0
  public static ECReportSetSpec createECReportSetSpec() {

    // create setSpec
    ECReportSetSpec setSpec = new ECReportSetSpec();

    // set parameters
    setSpec.setSet(SET_SPEC);

    return setSpec;
  }
Example #2
0
  public static void assertEquals(ECReportSetSpec expected, ECReportSetSpec actual) {

    if (expected == null || actual == null) {
      if (expected == null && actual == null) {
        return;
      } else {
        throw new AssertionFailedError();
      }
    }
    assertEquals(expected.getSet(), actual.getSet());
  }