refactor: 修正测试类未跟进更改的问题.

补充实现接口方法.
This commit is contained in:
LamGC 2021-09-04 16:34:48 +08:00
parent 13d90595b7
commit b5c3af1c19
Signed by: LamGC
GPG Key ID: 6C5AE2A913941E1D

View File

@ -7,4 +7,9 @@ public abstract class BaseTestTrigger implements GroovyTrigger {
public void run(Closure<?> task) {
throw new UnsupportedOperationException("Unavailable trigger.");
}
@Override
public void shutdown() {
// Do nothing.
}
}