增加单元测试模块

This commit is contained in:
bryan31
2021-03-30 16:52:20 +08:00
parent 1735c95cd1
commit 0ab3d2f4cc
14 changed files with 172 additions and 42 deletions

View File

@@ -7,12 +7,12 @@ import org.springframework.stereotype.Component;
@Component
public class ComponentAspect implements ICmpAroundAspect {
@Override
public void beforeProcess(Slot slot) {
public void beforeProcess(String nodeId, Slot slot) {
System.out.println("before process");
}
@Override
public void afterProcess(Slot slot) {
public void afterProcess(String nodeId, Slot slot) {
System.out.println("after process");
}
}