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

wistefan / tmforum-api / #182

28 Apr 2026 09:24AM UTC coverage: 30.644%. First build
#182

push

web-flow
Merge 9e8c581ef into 960b5fc8a

409 of 5798 branches covered (7.05%)

Branch coverage included in aggregate %.

0 of 24 new or added lines in 11 files covered. (0.0%)

2770 of 4576 relevant lines covered (60.53%)

0.61 hits per line

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

0.0
/common/src/main/java/org/fiware/tmforum/common/configuration/BasepathConfigurator.java
1
package org.fiware.tmforum.common.configuration;
2

3
public final class BasepathConfigurator {
4

5
        private BasepathConfigurator() {
6
        }
7

8
        public static void propagateGeneralBasepath(String moduleProperty) {
NEW
9
                if (System.getProperty(moduleProperty) != null) {
×
NEW
10
                        return;
×
11
                }
NEW
12
                String moduleEnv = moduleProperty.toUpperCase().replace('.', '_').replace('-', '_');
×
NEW
13
                if (System.getenv(moduleEnv) != null) {
×
NEW
14
                        return;
×
15
                }
NEW
16
                String generalBasepath = System.getProperty("general.basepath");
×
NEW
17
                if (generalBasepath == null) {
×
NEW
18
                        generalBasepath = System.getenv("GENERAL_BASEPATH");
×
19
                }
NEW
20
                if (generalBasepath != null) {
×
NEW
21
                        System.setProperty(moduleProperty, generalBasepath);
×
22
                }
NEW
23
        }
×
24
}
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