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

devonfw / IDEasy / 19751480105

28 Nov 2025 01:26AM UTC coverage: 69.441% (+0.3%) from 69.136%
19751480105

push

github

web-flow
#1613: fixed duplicated CVE check and refactored installation routine (#1614)

3696 of 5851 branches covered (63.17%)

Branch coverage included in aggregate %.

9620 of 13325 relevant lines covered (72.2%)

3.14 hits per line

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

81.82
cli/src/main/java/com/devonfw/tools/ide/tool/ToolEdition.java
1
package com.devonfw.tools.ide.tool;
2

3
/**
4
 * Record for the combination of {@link #tool() tool name} and {@link #edition() tool edition}.
5
 *
6
 * @param tool the {@link ToolCommandlet#getName() tool name}.
7
 * @param edition the {@link ToolCommandlet#getConfiguredEdition() configured edition}.
8
 */
9
public record ToolEdition(String tool, String edition) {
10

11
  public ToolEdition {
8✔
12
    if (edition == null) {
2!
13
      edition = tool;
×
14
    }
15
  }
1✔
16

17
  @Override
18
  public String toString() {
19

20
    if (this.edition.equals(this.tool)) {
6✔
21
      return this.tool;
3✔
22
    }
23
    return this.tool + "/" + this.edition;
6✔
24
  }
25
}
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