com.github.tankist88.carpenter.generator.command.AbstractCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of carpenter-generator Show documentation
Show all versions of carpenter-generator Show documentation
Carpenter is a framework for unit test generation from runtime data.
package com.github.tankist88.carpenter.generator.command;
public abstract class AbstractCommand implements Command {
@Override
public void execute() {
}
}