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

pkiraly / metadata-qa-api / #634

13 Mar 2025 08:06PM UTC coverage: 87.186% (-0.1%) from 87.296%
#634

push

pkiraly
Fix dependency checker #223

20 of 74 new or added lines in 11 files covered. (27.03%)

1 existing line in 1 file now uncovered.

5375 of 6165 relevant lines covered (87.19%)

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/configuration/schema/MQAFPattern.java
1
package de.gwdg.metadataqa.api.configuration.schema;
2

3
import java.util.regex.Pattern;
4

5
public class MQAFPattern {
6
  String pattern;
7
  Pattern compitedPattern;
8
  ApplicationScope scope;
9

NEW
10
  public MQAFPattern() {
×
NEW
11
  }
×
12

13
  public String getPattern() {
NEW
14
    return pattern;
×
15
  }
16

17
  public void setPattern(String pattern) {
NEW
18
    this.pattern = pattern;
×
NEW
19
    this.compitedPattern = Pattern.compile(pattern);
×
NEW
20
  }
×
21

22
  public MQAFPattern withPattern(String pattern) {
NEW
23
    setPattern(pattern);
×
NEW
24
    return this;
×
25
  }
26

27
  public ApplicationScope getScope() {
NEW
28
    return scope;
×
29
  }
30

31
  public void setScope(ApplicationScope scope) {
NEW
32
    this.scope = scope;
×
NEW
33
  }
×
34

35
  public MQAFPattern withScope(ApplicationScope scope) {
NEW
36
    this.scope = scope;
×
NEW
37
    return this;
×
38
  }
39

40
  public Pattern getCompitedPattern() {
NEW
41
    return compitedPattern;
×
42
  }
43
}
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