/**
   * Run the ListFieldRemoveValueCommand<Serializable> createCommand(ListField<T>,T,Ticket) method
   * test.
   *
   * @throws Exception if one of the used methods fails
   */
  @Test
  public void testCreateCommand1() throws Exception {

    final ListField<Serializable> field = this.listField;
    final Ticket ticket = this.t1;

    final ListFieldRemoveValueCommand<Serializable> result =
        ListFieldRemoveValueCommand.createCommand(field, this.per2, ticket);

    Assert.assertNotNull(result);
  }
  /**
   * Run the ListFieldRemoveValueCommand<Serializable> createCommand(ListField<T>,T,Ticket) method
   * test.
   *
   * @throws Exception if one of the used methods fails
   */
  @Test
  public void testCreateCommand3() throws Exception {

    final Ticket ticket = this.pbi1;
    this.pbi1.addHint("Test");

    final ListFieldRemoveValueCommand<String> result =
        ListFieldRemoveValueCommand.createCommand(this.pbi1HintsField, "Test", ticket);

    Assert.assertNotNull(result);
  }