/**
   * Run the void execute() method test.
   *
   * @throws Exception
   * @generatedBy CodePro at 5/12/13 6:41 PM
   */
  @Test
  public void testExecute_3() throws Exception {
    CompoundStatement fixture = new CompoundStatement(new ArrayList(), new ArrayList());

    fixture.execute();

    // add additional test code here
  }
  /**
   * Run the ArrayList<Statement> getStatements() method test.
   *
   * @throws Exception
   * @generatedBy CodePro at 5/12/13 6:41 PM
   */
  @Test
  public void testGetStatements_1() throws Exception {
    CompoundStatement fixture = new CompoundStatement(new ArrayList(), new ArrayList());

    ArrayList<Statement> result = fixture.getStatements();

    // add additional test code here
    assertNotNull(result);
  }
  /**
   * Run the String toString() method test.
   *
   * @throws Exception
   * @generatedBy CodePro at 5/12/13 6:41 PM
   */
  @Test
  public void testToString_1() throws Exception {
    CompoundStatement fixture = new CompoundStatement(new ArrayList(), new ArrayList());

    String result = fixture.toString();

    // add additional test code here
    assertNotNull(result);
  }