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

kit-data-manager / pit-service / #486

04 Mar 2025 01:58PM UTC coverage: 77.85% (+5.5%) from 72.4%
#486

Pull #264

github

web-flow
Merge 2aba06f55 into 534c1d4a6
Pull Request #264: Development branch for v3.0.0

370 of 466 new or added lines in 22 files covered. (79.4%)

2 existing lines in 1 file now uncovered.

956 of 1228 relevant lines covered (77.85%)

0.78 hits per line

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

33.33
/src/main/java/edu/kit/datamanager/pit/typeregistry/schema/SchemaInfo.java
1
package edu.kit.datamanager.pit.typeregistry.schema;
2

3
import jakarta.annotation.Nullable;
4
import jakarta.validation.constraints.NotNull;
5
import org.everit.json.schema.Schema;
6

7
import java.util.Optional;
8

9
public record SchemaInfo(
1✔
10
        @NotNull String origin,
11
        @Nullable Schema schema,
12
        @Nullable Throwable error
13
) {
14
    Optional<Throwable> hasError() {
NEW
15
        return Optional.ofNullable(this.error);
×
16
    }
17

18
    Optional<Schema> hasSchema() {
NEW
19
        return Optional.ofNullable(this.schema);
×
20
    }
21
}
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