IEXCorporateActions.java

1
package pl.zankowski.iextrading4j.api.refdata;
2
3
import com.fasterxml.jackson.annotation.JsonCreator;
4
import com.fasterxml.jackson.annotation.JsonProperty;
5
import com.google.common.base.MoreObjects;
6
import com.google.common.base.Objects;
7
8
import java.math.BigDecimal;
9
import java.time.LocalDate;
10
import java.time.LocalDateTime;
11
12
public class IEXCorporateActions extends DailyList {
13
14
    private static final long serialVersionUID = 2878470171998226594L;
15
16
    private final LocalDate effectiveDate;
17
    private final IssueEvent issueEvent;
18
    private final String currentSymbolInINETSymbology;
19
    private final String currentSymbolInCQSSymbology;
20
    private final String currentSymbolInCMSSymbology;
21
    private final String newSymbolInINETSymbology;
22
    private final String newSymbolInCQSSymbology;
23
    private final String newSymbolInCMSSymbology;
24
    private final String currentSecurityName;
25
    private final String newSecurityName;
26
    private final String currentCompanyName;
27
    private final String newCompanyName;
28
    private final ListingCenter currentListingCenter;
29
    private final ListingCenter newListingCenter;
30
    private final DelistingReason delistingReason;
31
    private final BigDecimal currentRoundLotSize;
32
    private final BigDecimal newRoundLotSize;
33
    private final LuldTier currentLULDTierIndicator;
34
    private final LuldTier newLULDTierIndicator;
35
    private final LocalDate expirationDate;
36
    private final LocalDate separationDate;
37
    private final LocalDate settlementDate;
38
    private final LocalDate maturityDate;
39
    private final LocalDate redemptionDate;
40
    private final FinancialStatus currentFinancialStatus;
41
    private final FinancialStatus newFinancialStatus;
42
    private final Flag whenIssuedFlag;
43
    private final Flag whenDistributedFlag;
44
    private final Flag ipoFlag;
45
    private final Flag historyHold;
46
    private final String notesForEachEntry;
47
    private final LocalDateTime recordUpdateTime;
48
49
    @JsonCreator
50
    public IEXCorporateActions(
51
            @JsonProperty("RecordID") final String recordId,
52
            @JsonProperty("DailyListTimestamp") final LocalDateTime dailyListTimestamp,
53
            @JsonProperty("EffectiveDate") final LocalDate effectiveDate,
54
            @JsonProperty("IssueEvent") final IssueEvent issueEvent,
55
            @JsonProperty("CurrentSymbolinINETSymbology") final String currentSymbolInINETSymbology,
56
            @JsonProperty("CurrentSymbolinCQSSymbology") final String currentSymbolInCQSSymbology,
57
            @JsonProperty("CurrentSymbolinCMSSymbology") final String currentSymbolInCMSSymbology,
58
            @JsonProperty("NewSymbolinINETSymbology") final String newSymbolInINETSymbology,
59
            @JsonProperty("NewSymbolinCQSSymbology") final String newSymbolInCQSSymbology,
60
            @JsonProperty("NewSymbolinCMSSymbology") final String newSymbolInCMSSymbology,
61
            @JsonProperty("CurrentSecurityName") final String currentSecurityName,
62
            @JsonProperty("NewSecurityName") final String newSecurityName,
63
            @JsonProperty("CurrentCompanyName") final String currentCompanyName,
64
            @JsonProperty("NewCompanyName") final String newCompanyName,
65
            @JsonProperty("CurrentListingCenter") final ListingCenter currentListingCenter,
66
            @JsonProperty("NewListingCenter") final ListingCenter newListingCenter,
67
            @JsonProperty("DelistingReason") final DelistingReason delistingReason,
68
            @JsonProperty("CurrentRoundLotSize") final BigDecimal currentRoundLotSize,
69
            @JsonProperty("NewRoundLotSize") final BigDecimal newRoundLotSize,
70
            @JsonProperty("CurrentLULDTierIndicator") final LuldTier currentLULDTierIndicator,
71
            @JsonProperty("NewLULDTierIndicator") final LuldTier newLULDTierIndicator,
72
            @JsonProperty("ExpirationDate") final LocalDate expirationDate,
73
            @JsonProperty("SeparationDate") final LocalDate separationDate,
74
            @JsonProperty("SettlementDate") final LocalDate settlementDate,
75
            @JsonProperty("MaturityDate") final LocalDate maturityDate,
76
            @JsonProperty("RedemptionDate") final LocalDate redemptionDate,
77
            @JsonProperty("CurrentFinancialStatus") final FinancialStatus currentFinancialStatus,
78
            @JsonProperty("NewFinancialStatus") final FinancialStatus newFinancialStatus,
79
            @JsonProperty("WhenIssuedFlag") final Flag whenIssuedFlag,
80
            @JsonProperty("WhenDistributedFlag") final Flag whenDistributedFlag,
81
            @JsonProperty("IPOFlag") final Flag ipoFlag,
82
            @JsonProperty("HistoryHold") final Flag historyHold,
83
            @JsonProperty("NotesforEachEntry") final String notesForEachEntry,
84
            @JsonProperty("RecordUpdateTime") final LocalDateTime recordUpdateTime) {
85
        super(recordId, dailyListTimestamp);
86
        this.effectiveDate = effectiveDate;
87
        this.issueEvent = issueEvent;
88
        this.currentSymbolInINETSymbology = currentSymbolInINETSymbology;
89
        this.currentSymbolInCQSSymbology = currentSymbolInCQSSymbology;
90
        this.currentSymbolInCMSSymbology = currentSymbolInCMSSymbology;
91
        this.newSymbolInINETSymbology = newSymbolInINETSymbology;
92
        this.newSymbolInCQSSymbology = newSymbolInCQSSymbology;
93
        this.newSymbolInCMSSymbology = newSymbolInCMSSymbology;
94
        this.currentSecurityName = currentSecurityName;
95
        this.newSecurityName = newSecurityName;
96
        this.currentCompanyName = currentCompanyName;
97
        this.newCompanyName = newCompanyName;
98
        this.currentListingCenter = currentListingCenter;
99
        this.newListingCenter = newListingCenter;
100
        this.delistingReason = delistingReason;
101
        this.currentRoundLotSize = currentRoundLotSize;
102
        this.newRoundLotSize = newRoundLotSize;
103
        this.currentLULDTierIndicator = currentLULDTierIndicator;
104
        this.newLULDTierIndicator = newLULDTierIndicator;
105
        this.expirationDate = expirationDate;
106
        this.separationDate = separationDate;
107
        this.settlementDate = settlementDate;
108
        this.maturityDate = maturityDate;
109
        this.redemptionDate = redemptionDate;
110
        this.currentFinancialStatus = currentFinancialStatus;
111
        this.newFinancialStatus = newFinancialStatus;
112
        this.whenIssuedFlag = whenIssuedFlag;
113
        this.whenDistributedFlag = whenDistributedFlag;
114
        this.ipoFlag = ipoFlag;
115
        this.historyHold = historyHold;
116
        this.notesForEachEntry = notesForEachEntry;
117
        this.recordUpdateTime = recordUpdateTime;
118
    }
119
120
    public LocalDate getEffectiveDate() {
121 1 1. getEffectiveDate : replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getEffectiveDate → KILLED
        return effectiveDate;
122
    }
123
124
    public IssueEvent getIssueEvent() {
125 1 1. getIssueEvent : replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getIssueEvent → KILLED
        return issueEvent;
126
    }
127
128
    public String getCurrentSymbolInINETSymbology() {
129 1 1. getCurrentSymbolInINETSymbology : replaced return value with "" for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getCurrentSymbolInINETSymbology → KILLED
        return currentSymbolInINETSymbology;
130
    }
131
132
    public String getCurrentSymbolInCQSSymbology() {
133 1 1. getCurrentSymbolInCQSSymbology : replaced return value with "" for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getCurrentSymbolInCQSSymbology → KILLED
        return currentSymbolInCQSSymbology;
134
    }
135
136
    public String getCurrentSymbolInCMSSymbology() {
137 1 1. getCurrentSymbolInCMSSymbology : replaced return value with "" for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getCurrentSymbolInCMSSymbology → KILLED
        return currentSymbolInCMSSymbology;
138
    }
139
140
    public String getNewSymbolInINETSymbology() {
141 1 1. getNewSymbolInINETSymbology : replaced return value with "" for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getNewSymbolInINETSymbology → KILLED
        return newSymbolInINETSymbology;
142
    }
143
144
    public String getNewSymbolInCQSSymbology() {
145 1 1. getNewSymbolInCQSSymbology : replaced return value with "" for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getNewSymbolInCQSSymbology → KILLED
        return newSymbolInCQSSymbology;
146
    }
147
148
    public String getNewSymbolInCMSSymbology() {
149 1 1. getNewSymbolInCMSSymbology : replaced return value with "" for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getNewSymbolInCMSSymbology → KILLED
        return newSymbolInCMSSymbology;
150
    }
151
152
    public String getCurrentSecurityName() {
153 1 1. getCurrentSecurityName : replaced return value with "" for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getCurrentSecurityName → KILLED
        return currentSecurityName;
154
    }
155
156
    public String getNewSecurityName() {
157 1 1. getNewSecurityName : replaced return value with "" for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getNewSecurityName → KILLED
        return newSecurityName;
158
    }
159
160
    public String getCurrentCompanyName() {
161 1 1. getCurrentCompanyName : replaced return value with "" for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getCurrentCompanyName → KILLED
        return currentCompanyName;
162
    }
163
164
    public String getNewCompanyName() {
165 1 1. getNewCompanyName : replaced return value with "" for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getNewCompanyName → KILLED
        return newCompanyName;
166
    }
167
168
    public ListingCenter getCurrentListingCenter() {
169 1 1. getCurrentListingCenter : replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getCurrentListingCenter → KILLED
        return currentListingCenter;
170
    }
171
172
    public ListingCenter getNewListingCenter() {
173 1 1. getNewListingCenter : replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getNewListingCenter → KILLED
        return newListingCenter;
174
    }
175
176
    public DelistingReason getDelistingReason() {
177 1 1. getDelistingReason : replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getDelistingReason → KILLED
        return delistingReason;
178
    }
179
180
    public BigDecimal getCurrentRoundLotSize() {
181 1 1. getCurrentRoundLotSize : replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getCurrentRoundLotSize → KILLED
        return currentRoundLotSize;
182
    }
183
184
    public BigDecimal getNewRoundLotSize() {
185 1 1. getNewRoundLotSize : replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getNewRoundLotSize → KILLED
        return newRoundLotSize;
186
    }
187
188
    public LuldTier getCurrentLULDTierIndicator() {
189 1 1. getCurrentLULDTierIndicator : replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getCurrentLULDTierIndicator → KILLED
        return currentLULDTierIndicator;
190
    }
191
192
    public LuldTier getNewLULDTierIndicator() {
193 1 1. getNewLULDTierIndicator : replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getNewLULDTierIndicator → KILLED
        return newLULDTierIndicator;
194
    }
195
196
    public LocalDate getExpirationDate() {
197 1 1. getExpirationDate : replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getExpirationDate → KILLED
        return expirationDate;
198
    }
199
200
    public LocalDate getSeparationDate() {
201 1 1. getSeparationDate : replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getSeparationDate → KILLED
        return separationDate;
202
    }
203
204
    public LocalDate getSettlementDate() {
205 1 1. getSettlementDate : replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getSettlementDate → KILLED
        return settlementDate;
206
    }
207
208
    public LocalDate getMaturityDate() {
209 1 1. getMaturityDate : replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getMaturityDate → KILLED
        return maturityDate;
210
    }
211
212
    public LocalDate getRedemptionDate() {
213 1 1. getRedemptionDate : replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getRedemptionDate → KILLED
        return redemptionDate;
214
    }
215
216
    public FinancialStatus getCurrentFinancialStatus() {
217 1 1. getCurrentFinancialStatus : replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getCurrentFinancialStatus → KILLED
        return currentFinancialStatus;
218
    }
219
220
    public FinancialStatus getNewFinancialStatus() {
221 1 1. getNewFinancialStatus : replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getNewFinancialStatus → KILLED
        return newFinancialStatus;
222
    }
223
224
    public Flag getWhenIssuedFlag() {
225 1 1. getWhenIssuedFlag : replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getWhenIssuedFlag → KILLED
        return whenIssuedFlag;
226
    }
227
228
    public Flag getWhenDistributedFlag() {
229 1 1. getWhenDistributedFlag : replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getWhenDistributedFlag → KILLED
        return whenDistributedFlag;
230
    }
231
232
    public Flag getIpoFlag() {
233 1 1. getIpoFlag : replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getIpoFlag → KILLED
        return ipoFlag;
234
    }
235
236
    public Flag getHistoryHold() {
237 1 1. getHistoryHold : replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getHistoryHold → KILLED
        return historyHold;
238
    }
239
240
    public String getNotesForEachEntry() {
241 1 1. getNotesForEachEntry : replaced return value with "" for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getNotesForEachEntry → KILLED
        return notesForEachEntry;
242
    }
243
244
    public LocalDateTime getRecordUpdateTime() {
245 1 1. getRecordUpdateTime : replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getRecordUpdateTime → KILLED
        return recordUpdateTime;
246
    }
247
248
    @Override
249
    public boolean equals(final Object o) {
250 2 1. equals : negated conditional → KILLED
2. equals : replaced boolean return with false for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::equals → KILLED
        if (this == o) return true;
251 3 1. equals : negated conditional → KILLED
2. equals : negated conditional → KILLED
3. equals : replaced boolean return with true for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::equals → KILLED
        if (o == null || getClass() != o.getClass()) return false;
252 2 1. equals : negated conditional → KILLED
2. equals : replaced boolean return with true for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::equals → KILLED
        if (!super.equals(o)) return false;
253
        final IEXCorporateActions that = (IEXCorporateActions) o;
254 3 1. equals : negated conditional → KILLED
2. equals : negated conditional → KILLED
3. equals : replaced boolean return with true for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::equals → KILLED
        return Objects.equal(effectiveDate, that.effectiveDate) &&
255
                issueEvent == that.issueEvent &&
256 1 1. equals : negated conditional → KILLED
                Objects.equal(currentSymbolInINETSymbology, that.currentSymbolInINETSymbology) &&
257 1 1. equals : negated conditional → KILLED
                Objects.equal(currentSymbolInCQSSymbology, that.currentSymbolInCQSSymbology) &&
258 1 1. equals : negated conditional → KILLED
                Objects.equal(currentSymbolInCMSSymbology, that.currentSymbolInCMSSymbology) &&
259 1 1. equals : negated conditional → KILLED
                Objects.equal(newSymbolInINETSymbology, that.newSymbolInINETSymbology) &&
260 1 1. equals : negated conditional → KILLED
                Objects.equal(newSymbolInCQSSymbology, that.newSymbolInCQSSymbology) &&
261 1 1. equals : negated conditional → KILLED
                Objects.equal(newSymbolInCMSSymbology, that.newSymbolInCMSSymbology) &&
262 1 1. equals : negated conditional → KILLED
                Objects.equal(currentSecurityName, that.currentSecurityName) &&
263 1 1. equals : negated conditional → KILLED
                Objects.equal(newSecurityName, that.newSecurityName) &&
264 1 1. equals : negated conditional → KILLED
                Objects.equal(currentCompanyName, that.currentCompanyName) &&
265 4 1. equals : negated conditional → KILLED
2. equals : negated conditional → KILLED
3. equals : negated conditional → KILLED
4. equals : negated conditional → KILLED
                Objects.equal(newCompanyName, that.newCompanyName) &&
266
                currentListingCenter == that.currentListingCenter &&
267
                newListingCenter == that.newListingCenter &&
268
                delistingReason == that.delistingReason &&
269 1 1. equals : negated conditional → KILLED
                Objects.equal(currentRoundLotSize, that.currentRoundLotSize) &&
270 3 1. equals : negated conditional → KILLED
2. equals : negated conditional → KILLED
3. equals : negated conditional → KILLED
                Objects.equal(newRoundLotSize, that.newRoundLotSize) &&
271
                currentLULDTierIndicator == that.currentLULDTierIndicator &&
272
                newLULDTierIndicator == that.newLULDTierIndicator &&
273 1 1. equals : negated conditional → KILLED
                Objects.equal(expirationDate, that.expirationDate) &&
274 1 1. equals : negated conditional → KILLED
                Objects.equal(separationDate, that.separationDate) &&
275 1 1. equals : negated conditional → KILLED
                Objects.equal(settlementDate, that.settlementDate) &&
276 1 1. equals : negated conditional → KILLED
                Objects.equal(maturityDate, that.maturityDate) &&
277 7 1. equals : negated conditional → KILLED
2. equals : negated conditional → KILLED
3. equals : negated conditional → KILLED
4. equals : negated conditional → KILLED
5. equals : negated conditional → KILLED
6. equals : negated conditional → KILLED
7. equals : negated conditional → KILLED
                Objects.equal(redemptionDate, that.redemptionDate) &&
278
                currentFinancialStatus == that.currentFinancialStatus &&
279
                newFinancialStatus == that.newFinancialStatus &&
280
                whenIssuedFlag == that.whenIssuedFlag &&
281
                whenDistributedFlag == that.whenDistributedFlag &&
282
                ipoFlag == that.ipoFlag &&
283
                historyHold == that.historyHold &&
284 1 1. equals : negated conditional → KILLED
                Objects.equal(notesForEachEntry, that.notesForEachEntry) &&
285 1 1. equals : negated conditional → KILLED
                Objects.equal(recordUpdateTime, that.recordUpdateTime);
286
    }
287
288
    @Override
289
    public int hashCode() {
290 1 1. hashCode : replaced int return with 0 for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::hashCode → KILLED
        return Objects.hashCode(super.hashCode(), effectiveDate, issueEvent, currentSymbolInINETSymbology,
291
                currentSymbolInCQSSymbology, currentSymbolInCMSSymbology, newSymbolInINETSymbology,
292
                newSymbolInCQSSymbology, newSymbolInCMSSymbology, currentSecurityName, newSecurityName,
293
                currentCompanyName, newCompanyName, currentListingCenter, newListingCenter, delistingReason,
294
                currentRoundLotSize, newRoundLotSize, currentLULDTierIndicator, newLULDTierIndicator,
295
                expirationDate, separationDate, settlementDate, maturityDate, redemptionDate,
296
                currentFinancialStatus, newFinancialStatus, whenIssuedFlag, whenDistributedFlag,
297
                ipoFlag, historyHold, notesForEachEntry, recordUpdateTime);
298
    }
299
300
    @Override
301
    public String toString() {
302 1 1. toString : replaced return value with "" for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::toString → KILLED
        return MoreObjects.toStringHelper(this)
303
                .add("effectiveDate", effectiveDate)
304
                .add("issueEvent", issueEvent)
305
                .add("currentSymbolInINETSymbology", currentSymbolInINETSymbology)
306
                .add("currentSymbolInCQSSymbology", currentSymbolInCQSSymbology)
307
                .add("currentSymbolInCMSSymbology", currentSymbolInCMSSymbology)
308
                .add("newSymbolInINETSymbology", newSymbolInINETSymbology)
309
                .add("newSymbolInCQSSymbology", newSymbolInCQSSymbology)
310
                .add("newSymbolInCMSSymbology", newSymbolInCMSSymbology)
311
                .add("currentSecurityName", currentSecurityName)
312
                .add("newSecurityName", newSecurityName)
313
                .add("currentCompanyName", currentCompanyName)
314
                .add("newCompanyName", newCompanyName)
315
                .add("currentListingCenter", currentListingCenter)
316
                .add("newListingCenter", newListingCenter)
317
                .add("delistingReason", delistingReason)
318
                .add("currentRoundLotSize", currentRoundLotSize)
319
                .add("newRoundLotSize", newRoundLotSize)
320
                .add("currentLULDTierIndicator", currentLULDTierIndicator)
321
                .add("newLULDTierIndicator", newLULDTierIndicator)
322
                .add("expirationDate", expirationDate)
323
                .add("separationDate", separationDate)
324
                .add("settlementDate", settlementDate)
325
                .add("maturityDate", maturityDate)
326
                .add("redemptionDate", redemptionDate)
327
                .add("currentFinancialStatus", currentFinancialStatus)
328
                .add("newFinancialStatus", newFinancialStatus)
329
                .add("whenIssuedFlag", whenIssuedFlag)
330
                .add("whenDistributedFlag", whenDistributedFlag)
331
                .add("ipoFlag", ipoFlag)
332
                .add("historyHold", historyHold)
333
                .add("notesForEachEntry", notesForEachEntry)
334
                .add("recordUpdateTime", recordUpdateTime)
335
                .toString();
336
    }
337
}

Mutations

121

1.1
Location : getEffectiveDate
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:constructor()]
replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getEffectiveDate → KILLED

125

1.1
Location : getIssueEvent
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:constructor()]
replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getIssueEvent → KILLED

129

1.1
Location : getCurrentSymbolInINETSymbology
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:constructor()]
replaced return value with "" for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getCurrentSymbolInINETSymbology → KILLED

133

1.1
Location : getCurrentSymbolInCQSSymbology
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:constructor()]
replaced return value with "" for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getCurrentSymbolInCQSSymbology → KILLED

137

1.1
Location : getCurrentSymbolInCMSSymbology
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:constructor()]
replaced return value with "" for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getCurrentSymbolInCMSSymbology → KILLED

141

1.1
Location : getNewSymbolInINETSymbology
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:constructor()]
replaced return value with "" for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getNewSymbolInINETSymbology → KILLED

145

1.1
Location : getNewSymbolInCQSSymbology
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:constructor()]
replaced return value with "" for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getNewSymbolInCQSSymbology → KILLED

149

1.1
Location : getNewSymbolInCMSSymbology
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:constructor()]
replaced return value with "" for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getNewSymbolInCMSSymbology → KILLED

153

1.1
Location : getCurrentSecurityName
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:constructor()]
replaced return value with "" for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getCurrentSecurityName → KILLED

157

1.1
Location : getNewSecurityName
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:constructor()]
replaced return value with "" for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getNewSecurityName → KILLED

161

1.1
Location : getCurrentCompanyName
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:constructor()]
replaced return value with "" for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getCurrentCompanyName → KILLED

165

1.1
Location : getNewCompanyName
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:constructor()]
replaced return value with "" for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getNewCompanyName → KILLED

169

1.1
Location : getCurrentListingCenter
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:constructor()]
replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getCurrentListingCenter → KILLED

173

1.1
Location : getNewListingCenter
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:constructor()]
replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getNewListingCenter → KILLED

177

1.1
Location : getDelistingReason
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:constructor()]
replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getDelistingReason → KILLED

181

1.1
Location : getCurrentRoundLotSize
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:constructor()]
replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getCurrentRoundLotSize → KILLED

185

1.1
Location : getNewRoundLotSize
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:constructor()]
replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getNewRoundLotSize → KILLED

189

1.1
Location : getCurrentLULDTierIndicator
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:constructor()]
replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getCurrentLULDTierIndicator → KILLED

193

1.1
Location : getNewLULDTierIndicator
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:constructor()]
replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getNewLULDTierIndicator → KILLED

197

1.1
Location : getExpirationDate
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:constructor()]
replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getExpirationDate → KILLED

201

1.1
Location : getSeparationDate
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:constructor()]
replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getSeparationDate → KILLED

205

1.1
Location : getSettlementDate
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:constructor()]
replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getSettlementDate → KILLED

209

1.1
Location : getMaturityDate
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:constructor()]
replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getMaturityDate → KILLED

213

1.1
Location : getRedemptionDate
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:constructor()]
replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getRedemptionDate → KILLED

217

1.1
Location : getCurrentFinancialStatus
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:constructor()]
replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getCurrentFinancialStatus → KILLED

221

1.1
Location : getNewFinancialStatus
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:constructor()]
replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getNewFinancialStatus → KILLED

225

1.1
Location : getWhenIssuedFlag
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:constructor()]
replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getWhenIssuedFlag → KILLED

229

1.1
Location : getWhenDistributedFlag
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:constructor()]
replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getWhenDistributedFlag → KILLED

233

1.1
Location : getIpoFlag
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:constructor()]
replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getIpoFlag → KILLED

237

1.1
Location : getHistoryHold
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:constructor()]
replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getHistoryHold → KILLED

241

1.1
Location : getNotesForEachEntry
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:constructor()]
replaced return value with "" for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getNotesForEachEntry → KILLED

245

1.1
Location : getRecordUpdateTime
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:constructor()]
replaced return value with null for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::getRecordUpdateTime → KILLED

250

1.1
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
negated conditional → KILLED

2.2
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
replaced boolean return with false for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::equals → KILLED

251

1.1
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
negated conditional → KILLED

2.2
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
negated conditional → KILLED

3.3
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
replaced boolean return with true for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::equals → KILLED

252

1.1
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
negated conditional → KILLED

2.2
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
replaced boolean return with true for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::equals → KILLED

254

1.1
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
negated conditional → KILLED

2.2
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
negated conditional → KILLED

3.3
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
replaced boolean return with true for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::equals → KILLED

256

1.1
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
negated conditional → KILLED

257

1.1
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
negated conditional → KILLED

258

1.1
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
negated conditional → KILLED

259

1.1
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
negated conditional → KILLED

260

1.1
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
negated conditional → KILLED

261

1.1
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
negated conditional → KILLED

262

1.1
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
negated conditional → KILLED

263

1.1
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
negated conditional → KILLED

264

1.1
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
negated conditional → KILLED

265

1.1
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
negated conditional → KILLED

2.2
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
negated conditional → KILLED

3.3
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
negated conditional → KILLED

4.4
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
negated conditional → KILLED

269

1.1
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
negated conditional → KILLED

270

1.1
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
negated conditional → KILLED

2.2
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
negated conditional → KILLED

3.3
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
negated conditional → KILLED

273

1.1
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
negated conditional → KILLED

274

1.1
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
negated conditional → KILLED

275

1.1
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
negated conditional → KILLED

276

1.1
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
negated conditional → KILLED

277

1.1
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
negated conditional → KILLED

2.2
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
negated conditional → KILLED

3.3
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
negated conditional → KILLED

4.4
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
negated conditional → KILLED

5.5
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
negated conditional → KILLED

6.6
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
negated conditional → KILLED

7.7
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
negated conditional → KILLED

284

1.1
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
negated conditional → KILLED

285

1.1
Location : equals
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
negated conditional → KILLED

290

1.1
Location : hashCode
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:equalsContract()]
replaced int return with 0 for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::hashCode → KILLED

302

1.1
Location : toString
Killed by : pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest.[engine:junit-jupiter]/[class:pl.zankowski.iextrading4j.api.refdata.IEXCorporateActionsTest]/[method:toStringVerification()]
replaced return value with "" for pl/zankowski/iextrading4j/api/refdata/IEXCorporateActions::toString → KILLED

Active mutators

Tests examined


Report generated by PIT 1.7.1