All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.vertx.ext.unit.impl.TestCommandFactory Maven / Gradle / Ivy

There is a newer version: 5.0.0.CR3
Show newest version
package io.vertx.ext.unit.impl;

import io.vertx.core.cli.CLI;
import io.vertx.core.spi.launcher.DefaultCommandFactory;

/**
 * @author Julien Viet
 */
public class TestCommandFactory extends DefaultCommandFactory {

  @Override
  public CLI define() {
    CLI cli = super.define();
    cli.getArgument(0).setArgName("test-verticle");
    return cli;
  }

  public TestCommandFactory() {
    super(TestCommand.class);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy