All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.arextest.schedule.model.report.CompareResultDetail Maven / Gradle / Ivy

There is a newer version: 2.0.4
Show newest version
package com.arextest.schedule.model.report;

import com.arextest.diff.model.log.NodeEntity;
import com.fasterxml.jackson.annotation.JsonIgnore;
import java.util.List;
import lombok.Data;

@Data
public class CompareResultDetail {

  private String id;
  private String categoryName;
  private String operationName;

  private List logInfos;
  private String baseMsg;
  private String testMsg;

  private Integer diffResultCode;
  private String exceptionMsg;

  private Boolean ignore;

  @Data
  public static class LogInfo {

    private int count;
    private List nodePath;
    @JsonIgnore
    private int unmatchedType;
    private int logIndex;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy