Пример #1
0
  /**
   * Run the void setUseCase(HDScriptUseCase) method test.
   *
   * @throws Exception
   * @generatedBy CodePro at 9/10/14 9:36 AM
   */
  @Test
  public void testSetUseCase_1() throws Exception {
    HDScriptGroupStep fixture = new HDScriptGroupStep();
    fixture.setUseCase(new HDScriptUseCase());
    HDScriptUseCase useCase = new HDScriptUseCase();

    fixture.setUseCase(useCase);
  }
Пример #2
0
  /**
   * Run the HDScriptUseCase getUseCase() method test.
   *
   * @throws Exception
   * @generatedBy CodePro at 9/10/14 9:36 AM
   */
  @Test
  public void testGetUseCase_1() throws Exception {
    HDScriptGroupStep fixture = new HDScriptGroupStep();
    fixture.setUseCase(new HDScriptUseCase());

    HDScriptUseCase result = fixture.getUseCase();

    assertNotNull(result);
    assertEquals(null, result.getName());
    assertEquals(null, result.getParent());
  }