public class AbstractClusterCommandTest {
@Test
public void testOverrides() throws Exception {
AbstractClusterCommand clusterCommand = new AbstractClusterCommand("name",
"description", new ClusterControllerFactory()) {
@Override
public int run(InputStream in, PrintStream out, PrintStream err,
List<String> args) throws Exception {
return 0;
}