chore: 处理lombok警告
This commit is contained in:
parent
b17bacd723
commit
7f7819af89
|
@ -16,13 +16,18 @@ import lombok.NoArgsConstructor;
|
|||
public class CaseCount {
|
||||
|
||||
@Schema(description = "成功用例数量")
|
||||
@Builder.Default
|
||||
private Integer success = 0;
|
||||
@Schema(description = "失败用例数量")
|
||||
@Builder.Default
|
||||
private Integer error = 0;
|
||||
@Schema(description = "误报用例数量")
|
||||
@Builder.Default
|
||||
private Integer fakeError = 0;
|
||||
@Schema(description = "阻塞用例数量")
|
||||
@Builder.Default
|
||||
private Integer block = 0;
|
||||
@Schema(description = "未执行用例数量")
|
||||
@Builder.Default
|
||||
private Integer pending = 0;
|
||||
}
|
||||
|
|
|
@ -13,10 +13,12 @@ import java.util.Map;
|
|||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
public class TestPlanReportModuleParam {
|
||||
|
||||
@Builder.Default
|
||||
private Map<String, String> functionalModuleMap = new HashMap<>();
|
||||
|
||||
@Builder.Default
|
||||
private Map<String, String> apiModuleMap = new HashMap<>();
|
||||
|
||||
@Builder.Default
|
||||
private Map<String, String> scenarioModuleMap = new HashMap<>();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue