1 | package org.cardanofoundation.explorer.api.model.response.tx; | |
2 | ||
3 | import lombok.AllArgsConstructor; | |
4 | import lombok.Builder; | |
5 | import lombok.Data; | |
6 | import lombok.NoArgsConstructor; | |
7 | ||
8 | import com.fasterxml.jackson.annotation.JsonIgnore; | |
9 | ||
10 | import org.cardanofoundation.explorer.api.common.constant.CommonConstant; | |
11 | ||
12 |
1
1. toString : replaced return value with "" for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse::toString → NO_COVERAGE |
@Data |
13 |
32
1. maxEpoch : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse$ProtocolParamResponseBuilder::maxEpoch → NO_COVERAGE 2. decentralisation : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse$ProtocolParamResponseBuilder::decentralisation → NO_COVERAGE 3. maxTxExSteps : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse$ProtocolParamResponseBuilder::maxTxExSteps → NO_COVERAGE 4. poolDeposit : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse$ProtocolParamResponseBuilder::poolDeposit → NO_COVERAGE 5. minPoolCost : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse$ProtocolParamResponseBuilder::minPoolCost → NO_COVERAGE 6. maxBlockExSteps : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse$ProtocolParamResponseBuilder::maxBlockExSteps → NO_COVERAGE 7. protocolMinor : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse$ProtocolParamResponseBuilder::protocolMinor → NO_COVERAGE 8. treasuryGrowthRate : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse$ProtocolParamResponseBuilder::treasuryGrowthRate → NO_COVERAGE 9. coinsPerUtxoSize : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse$ProtocolParamResponseBuilder::coinsPerUtxoSize → NO_COVERAGE 10. optimalPoolCount : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse$ProtocolParamResponseBuilder::optimalPoolCount → NO_COVERAGE 11. build : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse$ProtocolParamResponseBuilder::build → NO_COVERAGE 12. protocolMajor : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse$ProtocolParamResponseBuilder::protocolMajor → NO_COVERAGE 13. influence : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse$ProtocolParamResponseBuilder::influence → NO_COVERAGE 14. maxBhSize : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse$ProtocolParamResponseBuilder::maxBhSize → NO_COVERAGE 15. costModel : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse$ProtocolParamResponseBuilder::costModel → NO_COVERAGE 16. collateralPercent : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse$ProtocolParamResponseBuilder::collateralPercent → NO_COVERAGE 17. toString : replaced return value with "" for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse$ProtocolParamResponseBuilder::toString → NO_COVERAGE 18. priceMem : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse$ProtocolParamResponseBuilder::priceMem → NO_COVERAGE 19. keyDeposit : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse$ProtocolParamResponseBuilder::keyDeposit → NO_COVERAGE 20. maxCollateralInputs : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse$ProtocolParamResponseBuilder::maxCollateralInputs → NO_COVERAGE 21. monetaryExpandRate : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse$ProtocolParamResponseBuilder::monetaryExpandRate → NO_COVERAGE 22. maxValSize : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse$ProtocolParamResponseBuilder::maxValSize → NO_COVERAGE 23. builder : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse::builder → NO_COVERAGE 24. entropy : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse$ProtocolParamResponseBuilder::entropy → NO_COVERAGE 25. maxTxSize : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse$ProtocolParamResponseBuilder::maxTxSize → NO_COVERAGE 26. maxBlockSize : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse$ProtocolParamResponseBuilder::maxBlockSize → NO_COVERAGE 27. maxBlockExMem : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse$ProtocolParamResponseBuilder::maxBlockExMem → NO_COVERAGE 28. minFeeB : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse$ProtocolParamResponseBuilder::minFeeB → NO_COVERAGE 29. minUtxoValue : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse$ProtocolParamResponseBuilder::minUtxoValue → NO_COVERAGE 30. priceStep : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse$ProtocolParamResponseBuilder::priceStep → NO_COVERAGE 31. maxTxExMem : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse$ProtocolParamResponseBuilder::maxTxExMem → NO_COVERAGE 32. minFeeA : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse$ProtocolParamResponseBuilder::minFeeA → NO_COVERAGE |
@Builder |
14 | @NoArgsConstructor | |
15 | @AllArgsConstructor | |
16 | public class ProtocolParamResponse { | |
17 |
1
1. getMinFeeA : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse::getMinFeeA → NO_COVERAGE |
Object minFeeA; |
18 | ||
19 |
1
1. getMinFeeB : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse::getMinFeeB → NO_COVERAGE |
Object minFeeB; |
20 | ||
21 |
1
1. getMaxBlockSize : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse::getMaxBlockSize → NO_COVERAGE |
Object maxBlockSize; |
22 | ||
23 |
1
1. getMaxTxSize : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse::getMaxTxSize → NO_COVERAGE |
Object maxTxSize; |
24 | ||
25 |
1
1. getMaxBhSize : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse::getMaxBhSize → NO_COVERAGE |
Object maxBhSize; |
26 | ||
27 |
1
1. getKeyDeposit : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse::getKeyDeposit → NO_COVERAGE |
Object keyDeposit; |
28 | ||
29 |
1
1. getPoolDeposit : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse::getPoolDeposit → NO_COVERAGE |
Object poolDeposit; |
30 | ||
31 |
1
1. getMaxEpoch : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse::getMaxEpoch → NO_COVERAGE |
Object maxEpoch; |
32 | ||
33 |
1
1. getOptimalPoolCount : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse::getOptimalPoolCount → NO_COVERAGE |
Object optimalPoolCount; |
34 | ||
35 |
1
1. getMinUtxoValue : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse::getMinUtxoValue → NO_COVERAGE |
Object minUtxoValue; |
36 | ||
37 |
1
1. getMinPoolCost : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse::getMinPoolCost → NO_COVERAGE |
Object minPoolCost; |
38 | ||
39 |
1
1. getMaxTxExMem : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse::getMaxTxExMem → NO_COVERAGE |
Object maxTxExMem; |
40 | ||
41 |
1
1. getMaxTxExSteps : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse::getMaxTxExSteps → NO_COVERAGE |
Object maxTxExSteps; |
42 | ||
43 |
1
1. getMaxBlockExMem : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse::getMaxBlockExMem → NO_COVERAGE |
Object maxBlockExMem; |
44 | ||
45 |
1
1. getMaxBlockExSteps : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse::getMaxBlockExSteps → NO_COVERAGE |
Object maxBlockExSteps; |
46 | ||
47 |
1
1. getMaxValSize : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse::getMaxValSize → NO_COVERAGE |
Object maxValSize; |
48 | ||
49 |
1
1. getCoinsPerUtxoSize : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse::getCoinsPerUtxoSize → NO_COVERAGE |
Object coinsPerUtxoSize; |
50 | ||
51 |
1
1. getInfluence : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse::getInfluence → NO_COVERAGE |
Object influence; |
52 | ||
53 |
1
1. getMonetaryExpandRate : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse::getMonetaryExpandRate → NO_COVERAGE |
Object monetaryExpandRate; |
54 | ||
55 |
1
1. getTreasuryGrowthRate : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse::getTreasuryGrowthRate → NO_COVERAGE |
Object treasuryGrowthRate; |
56 | ||
57 |
1
1. getDecentralisation : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse::getDecentralisation → NO_COVERAGE |
Object decentralisation; |
58 | ||
59 |
1
1. getPriceMem : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse::getPriceMem → NO_COVERAGE |
Object priceMem; |
60 | ||
61 |
1
1. getPriceStep : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse::getPriceStep → NO_COVERAGE |
Object priceStep; |
62 | ||
63 |
1
1. getProtocolMajor : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse::getProtocolMajor → NO_COVERAGE |
Object protocolMajor; |
64 | ||
65 |
1
1. getProtocolMinor : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse::getProtocolMinor → NO_COVERAGE |
Object protocolMinor; |
66 | ||
67 |
1
1. getCollateralPercent : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse::getCollateralPercent → NO_COVERAGE |
Object collateralPercent; |
68 | ||
69 |
1
1. getMaxCollateralInputs : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse::getMaxCollateralInputs → NO_COVERAGE |
Object maxCollateralInputs; |
70 | ||
71 |
1
1. getEntropy : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse::getEntropy → NO_COVERAGE |
Object entropy; |
72 | ||
73 |
1
1. getCostModel : replaced return value with null for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse::getCostModel → NO_COVERAGE |
Object costModel; |
74 | ||
75 | @Override | |
76 | public int hashCode() { | |
77 |
1
1. hashCode : replaced int return with 0 for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse::hashCode → NO_COVERAGE |
return CommonConstant.hashCode( |
78 | minFeeA, | |
79 | minFeeB, | |
80 | maxBlockSize, | |
81 | maxTxSize, | |
82 | maxBhSize, | |
83 | keyDeposit, | |
84 | poolDeposit, | |
85 | maxEpoch, | |
86 | optimalPoolCount, | |
87 | minUtxoValue, | |
88 | minPoolCost, | |
89 | maxTxExMem, | |
90 | maxTxExSteps, | |
91 | maxBlockExMem, | |
92 | maxBlockExSteps, | |
93 | maxValSize, | |
94 | coinsPerUtxoSize, | |
95 | influence, | |
96 | monetaryExpandRate, | |
97 | treasuryGrowthRate, | |
98 | decentralisation, | |
99 | priceMem, | |
100 | priceStep, | |
101 | protocolMajor, | |
102 | protocolMinor, | |
103 | collateralPercent, | |
104 | maxCollateralInputs, | |
105 | entropy, | |
106 | costModel); | |
107 | } | |
108 | ||
109 | @JsonIgnore | |
110 | public boolean isNull() { | |
111 |
1
1. isNull : negated conditional → NO_COVERAGE |
if (this.hashCode() == new ProtocolParamResponse().hashCode()) { |
112 |
1
1. isNull : replaced boolean return with false for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse::isNull → NO_COVERAGE |
return true; |
113 | } | |
114 |
1
1. isNull : replaced boolean return with true for org/cardanofoundation/explorer/api/model/response/tx/ProtocolParamResponse::isNull → NO_COVERAGE |
return false; |
115 | } | |
116 | } | |
Mutations | ||
12 |
1.1 |
|
13 |
1.1 2.2 3.3 4.4 5.5 6.6 7.7 8.8 9.9 10.10 11.11 12.12 13.13 14.14 15.15 16.16 17.17 18.18 19.19 20.20 21.21 22.22 23.23 24.24 25.25 26.26 27.27 28.28 29.29 30.30 31.31 32.32 |
|
17 |
1.1 |
|
19 |
1.1 |
|
21 |
1.1 |
|
23 |
1.1 |
|
25 |
1.1 |
|
27 |
1.1 |
|
29 |
1.1 |
|
31 |
1.1 |
|
33 |
1.1 |
|
35 |
1.1 |
|
37 |
1.1 |
|
39 |
1.1 |
|
41 |
1.1 |
|
43 |
1.1 |
|
45 |
1.1 |
|
47 |
1.1 |
|
49 |
1.1 |
|
51 |
1.1 |
|
53 |
1.1 |
|
55 |
1.1 |
|
57 |
1.1 |
|
59 |
1.1 |
|
61 |
1.1 |
|
63 |
1.1 |
|
65 |
1.1 |
|
67 |
1.1 |
|
69 |
1.1 |
|
71 |
1.1 |
|
73 |
1.1 |
|
77 |
1.1 |
|
111 |
1.1 |
|
112 |
1.1 |
|
114 |
1.1 |