DelegatorChartList.java

1
package org.cardanofoundation.explorer.api.model.response.pool.chart;
2
3
import lombok.Getter;
4
import lombok.Setter;
5
6
import org.cardanofoundation.explorer.api.model.response.pool.projection.DelegatorChartProjection;
7
8
@Getter
9
@Setter
10
public class DelegatorChartList {
11
12 1 1. getEpochNo : replaced Integer return value with 0 for org/cardanofoundation/explorer/api/model/response/pool/chart/DelegatorChartList::getEpochNo → NO_COVERAGE
  private Integer epochNo;
13
14 1 1. getNumberDelegator : replaced Long return value with 0L for org/cardanofoundation/explorer/api/model/response/pool/chart/DelegatorChartList::getNumberDelegator → NO_COVERAGE
  private Long numberDelegator;
15
16
  public DelegatorChartList(DelegatorChartProjection delegatorChart) {
17
    this.epochNo = delegatorChart.getChartKey();
18
    this.numberDelegator = delegatorChart.getChartValue();
19
  }
20
}

Mutations

12

1.1
Location : getEpochNo
Killed by : none
replaced Integer return value with 0 for org/cardanofoundation/explorer/api/model/response/pool/chart/DelegatorChartList::getEpochNo → NO_COVERAGE

14

1.1
Location : getNumberDelegator
Killed by : none
replaced Long return value with 0L for org/cardanofoundation/explorer/api/model/response/pool/chart/DelegatorChartList::getNumberDelegator → NO_COVERAGE

Active mutators

Tests examined


Report generated by PIT 1.14.2