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

pkiraly / metadata-qa-api / #644

03 Apr 2025 09:28AM UTC coverage: 87.234% (-0.2%) from 87.454%
#644

push

pkiraly
Add mandatory and scope as generic rule properties #225

70 of 87 new or added lines in 12 files covered. (80.46%)

6 existing lines in 4 files now uncovered.

5453 of 6251 relevant lines covered (87.23%)

0.87 hits per line

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

75.0
/src/main/java/de/gwdg/metadataqa/api/util/DimensionDao.java
1
package de.gwdg.metadataqa.api.util;
2

3
public class DimensionDao {
4
  private Integer width;
5
  private Integer height;
6

7
  public DimensionDao(Integer width, Integer height) {
1✔
8
    this.width = width;
1✔
9
    this.height = height;
1✔
10
  }
1✔
11

12
  public Integer getWidth() {
13
    return width;
1✔
14
  }
15

16
  public Integer getHeight() {
17
    return height;
1✔
18
  }
19

20
  public Integer getShort() {
UNCOV
21
    return width <= height ? width : height;
×
22
  }
23

24
  public Integer getLong() {
UNCOV
25
    return width >= height ? width : height;
×
26
  }
27

28
}
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