示例#1
0
  /**
   * Run the void setName(String) method test.
   *
   * @throws Exception
   * @generatedBy CodePro at 9/10/14 9:36 AM
   */
  @Test
  public void testSetName_1() throws Exception {
    HDWorkload fixture = new HDWorkload();
    fixture.setVariables(new HDTestVariables());
    fixture.setName("");
    fixture.setDescription("");
    String name = "";

    fixture.setName(name);
  }
示例#2
0
  /**
   * Run the void setVariables(HDTestVariables) method test.
   *
   * @throws Exception
   * @generatedBy CodePro at 9/10/14 9:36 AM
   */
  @Test
  public void testSetVariables_1() throws Exception {
    HDWorkload fixture = new HDWorkload();
    fixture.setVariables(new HDTestVariables());
    fixture.setName("");
    fixture.setDescription("");
    HDTestVariables variables = new HDTestVariables();

    fixture.setVariables(variables);
  }
示例#3
0
  /**
   * Run the int hashCode() method test.
   *
   * @throws Exception
   * @generatedBy CodePro at 9/10/14 9:36 AM
   */
  @Test
  public void testHashCode_1() throws Exception {
    HDWorkload fixture = new HDWorkload();
    fixture.setVariables(new HDTestVariables());
    fixture.setName("");
    fixture.setDescription("");

    int result = fixture.hashCode();

    assertEquals(861102, result);
  }
示例#4
0
  /**
   * Run the String getName() method test.
   *
   * @throws Exception
   * @generatedBy CodePro at 9/10/14 9:36 AM
   */
  @Test
  public void testGetName_1() throws Exception {
    HDWorkload fixture = new HDWorkload();
    fixture.setVariables(new HDTestVariables());
    fixture.setName("");
    fixture.setDescription("");

    String result = fixture.getName();

    assertEquals("", result);
  }
示例#5
0
  /**
   * Run the boolean equals(Object) method test.
   *
   * @throws Exception
   * @generatedBy CodePro at 9/10/14 9:36 AM
   */
  @Test
  public void testEquals_1() throws Exception {
    HDWorkload fixture = new HDWorkload();
    fixture.setVariables(new HDTestVariables());
    fixture.setName("");
    fixture.setDescription("");
    Object obj = new Object();

    boolean result = fixture.equals(obj);

    assertEquals(false, result);
  }
示例#6
0
  /**
   * Run the HDTestVariables getVariables() method test.
   *
   * @throws Exception
   * @generatedBy CodePro at 9/10/14 9:36 AM
   */
  @Test
  public void testGetVariables_1() throws Exception {
    HDWorkload fixture = new HDWorkload();
    fixture.setVariables(new HDTestVariables());
    fixture.setName("");
    fixture.setDescription("");

    HDTestVariables result = fixture.getVariables();

    assertNotNull(result);
    assertEquals(false, result.isAllowOverride());
  }
示例#7
0
  /**
   * Run the List<HDTestPlan> getPlans() method test.
   *
   * @throws Exception
   * @generatedBy CodePro at 9/10/14 9:36 AM
   */
  @Test
  public void testGetPlans_1() throws Exception {
    HDWorkload fixture = new HDWorkload();
    fixture.setVariables(new HDTestVariables());
    fixture.setName("");
    fixture.setDescription("");

    List<HDTestPlan> result = fixture.getPlans();

    assertNotNull(result);
    assertEquals(0, result.size());
  }
示例#8
0
 private void setFromString(String scriptXml) {
   if (StringUtils.isBlank(scriptXml)) {
     debuggerFrame.setCurrentWorkload(null);
     debuggerFrame.setCurrentTitle("");
   } else {
     HDWorkload workload = unmarshalWorkload(scriptXml);
     if (workload != null) {
       debuggerFrame.setCurrentWorkload(workload);
       debuggerFrame.setCurrentTitle("Workload: " + workload.getName());
     }
   }
 }
示例#9
0
 @Test(groups = TestGroups.FUNCTIONAL)
 public void test() throws Exception {
   HDWorkload workload = new HDWorkload();
   workload.setName("Test Workload");
   workload.setDescription("Desc of TestWorkload");
   List<HDTestPlan> plans = workload.getPlans();
   plans.add(getTestPlan(1, 50));
   plans.add(getTestPlan(2, 50));
   String marshall = JaxbUtil.marshall(workload);
   Assert.assertNotNull(marshall);
   System.out.println(marshall);
   HDWorkload unmarshall = JaxbUtil.unmarshall(marshall, HDWorkload.class);
   Assert.assertEquals(workload, unmarshall);
 }