Example #1
0
  /**
   * Run the void setCookieValue(String) method test.
   *
   * @throws Exception
   * @generatedBy CodePro at 9/10/14 9:36 AM
   */
  @Test
  public void testSetCookieValue_1() throws Exception {
    CookieStep fixture = new CookieStep();
    fixture.setCookiePath("");
    fixture.setCookieValue("");
    fixture.setCookieDomain("");
    fixture.setCookieName("");
    fixture.stepIndex = 1;
    String cookieValue = "";

    fixture.setCookieValue(cookieValue);
  }
Example #2
0
  /**
   * Run the String getCookiePath() method test.
   *
   * @throws Exception
   * @generatedBy CodePro at 9/10/14 9:36 AM
   */
  @Test
  public void testGetCookiePath_1() throws Exception {
    CookieStep fixture = new CookieStep();
    fixture.setCookiePath("");
    fixture.setCookieValue("");
    fixture.setCookieDomain("");
    fixture.setCookieName("");
    fixture.stepIndex = 1;

    String result = fixture.getCookiePath();

    assertEquals("", result);
  }