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

pkiraly / metadata-qa-marc / #1527

22 Aug 2025 02:21PM UTC coverage: 90.345%. Remained the same
#1527

push

pkiraly
Improve timeline handling

5191 of 6416 new or added lines in 219 files covered. (80.91%)

886 existing lines in 78 files now uncovered.

36717 of 40641 relevant lines covered (90.34%)

0.9 hits per line

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

85.71
/src/main/java/de/gwdg/metadataqa/marc/analysis/FieldWithScheme.java
1
package de.gwdg.metadataqa.marc.analysis;
2

3
public class FieldWithScheme {
4
  String tag;
5
  String schemaName;
6

7
  public FieldWithScheme(String tag, String schemaName) {
1✔
8
    this.tag = tag;
1✔
9
    this.schemaName = schemaName;
1✔
10
  }
1✔
11

12
  public String getTag() {
13
    return tag;
1✔
14
  }
15

16
  public String getSchemaName() {
17
    return schemaName;
1✔
18
  }
19

20
  @Override
21
  public String toString() {
NEW
22
    return "FieldWithScheme{" +
×
23
      "tag='" + tag + '\'' +
24
      ", schemaName='" + schemaName + '\'' +
25
      '}';
26
  }
27
}
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