Browse Source

Update ShellCommandExecutorTest.java

add unit test
pull/3/MERGE
小清 3 years ago committed by GitHub
parent
commit
6819def6e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      dolphinscheduler-server/src/test/java/org/apache/dolphinscheduler/server/worker/shell/ShellCommandExecutorTest.java

7
dolphinscheduler-server/src/test/java/org/apache/dolphinscheduler/server/worker/shell/ShellCommandExecutorTest.java

@ -133,7 +133,6 @@ public class ShellCommandExecutorTest {
}
};
}
@Override
public InputStream getInputStream() {
return new InputStream() {
@ -143,25 +142,21 @@ public class ShellCommandExecutorTest {
}
};
}
@Override
public InputStream getErrorStream() {
return null;
}
@Override
public int waitFor() throws InterruptedException {
return 0;
}
@Override
public int exitValue() {
return 0;
}
@Override
public void destroy() {
logger.info("unit test");
logger.info("unit test");
}
}};
ShellCommandExecutor result = (ShellCommandExecutor) method.invoke(instance, arg1s);

Loading…
Cancel
Save