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

devonfw / IDEasy / 9907372175

12 Jul 2024 11:49AM UTC coverage: 61.142% (-0.02%) from 61.162%
9907372175

push

github

hohwille
fixed tests

1997 of 3595 branches covered (55.55%)

Branch coverage included in aggregate %.

5296 of 8333 relevant lines covered (63.55%)

2.8 hits per line

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

0.0
cli/src/main/java/com/devonfw/tools/ide/github/GithubTag.java
1
package com.devonfw.tools.ide.github;
2

3
import com.fasterxml.jackson.annotation.JsonProperty;
4

5
/**
6
 * JSON data object for a github tag ref.
7
 */
8
public class GithubTag {
9

10
  private String ref;
11

12
  /**
13
   * The constructor.
14
   */
15
  public GithubTag() {
16

17
    super();
×
18
  }
×
19

20
  /**
21
   * The constructor.
22
   *
23
   * @param ref the {@link #getRef() ref}.
24
   */
25
  public GithubTag(String ref) {
26

27
    super();
×
28
    this.ref = ref;
×
29
  }
×
30

31
  /**
32
   * @return the tag reference (e.g. "refs/tags/v1.0").
33
   */
34
  @JsonProperty("ref")
35
  public String getRef() {
36

37
    return this.ref;
×
38
  }
39

40
  /**
41
   * @param ref the new value of {@link #getRef()}.
42
   */
43
  @JsonProperty("ref")
44
  public void setRef(String ref) {
45

46
    this.ref = ref;
×
47
  }
×
48
}
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

© 2025 Coveralls, Inc