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

pkiraly / metadata-qa-api / #652

15 Apr 2025 10:29AM UTC coverage: 86.972% (-0.3%) from 87.272%
#652

push

pkiraly
Release v0.9.7

5494 of 6317 relevant lines covered (86.97%)

0.87 hits per line

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

0.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) {
×
8
    this.width = width;
×
9
    this.height = height;
×
10
  }
×
11

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

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

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

24
  public Integer getLong() {
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