• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

DataBiosphere / consent / #5486

11 Dec 2024 07:00PM UTC coverage: 79.013% (-0.09%) from 79.101%
#5486

push

web-flow
DT-982: Remove unused SO Support feature (#2435)

1 of 2 new or added lines in 2 files covered. (50.0%)

6 existing lines in 2 files now uncovered.

10233 of 12951 relevant lines covered (79.01%)

0.79 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

35.29
/src/main/java/org/broadinstitute/consent/http/models/support/CustomRequestField.java
1
package org.broadinstitute.consent.http.models.support;
2

3
import java.util.Objects;
4

5
public class CustomRequestField {
6

7
  private long id;
8
  private String value;
9

10
  public CustomRequestField(long id, String value) {
1✔
11
    this.id = id;
1✔
12
    this.value = value;
1✔
13
  }
1✔
14

15
  public long getId() {
16
    return id;
1✔
17
  }
18

19
  public void setId(long id) {
20
    this.id = id;
×
21
  }
×
22

23
  public String getValue() {
24
    return value;
1✔
25
  }
26

27
  public void setValue(String value) {
28
    this.value = value;
×
29
  }
×
30

31
  @Override
32
  public boolean equals(Object o) {
UNCOV
33
    if (this == o) {
×
34
      return true;
×
35
    }
UNCOV
36
    if (o == null || getClass() != o.getClass()) {
×
37
      return false;
×
38
    }
UNCOV
39
    CustomRequestField that = (CustomRequestField) o;
×
UNCOV
40
    return Objects.equals(id, that.id) && Objects.equals(value, that.value);
×
41
  }
42

43
  @Override
44
  public int hashCode() {
45
    return Objects.hash(id, value);
×
46
  }
47
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc