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

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

29 Jul 2025 01:16PM UTC coverage: 77.908% (+5.2%) from 72.712%
#552

Pull #264

github

web-flow
Merge 0f68003b1 into 201395eb2
Pull Request #264: Development branch for v3.0.0

654 of 791 new or added lines in 25 files covered. (82.68%)

3 existing lines in 2 files now uncovered.

1065 of 1367 relevant lines covered (77.91%)

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/domain/PIDRecordEntry.java
1
/*
2
 * Copyright (c) 2025 Karlsruhe Institute of Technology.
3
 *
4
 * Licensed under the Apache License, Version 2.0 (the "License");
5
 * you may not use this file except in compliance with the License.
6
 * You may obtain a copy of the License at
7
 *
8
 *      http://www.apache.org/licenses/LICENSE-2.0
9
 *
10
 * Unless required by applicable law or agreed to in writing, software
11
 * distributed under the License is distributed on an "AS IS" BASIS,
12
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
 * See the License for the specific language governing permissions and
14
 * limitations under the License.
15
 */
16

17
package edu.kit.datamanager.pit.domain;
18

19
import lombok.Data;
20

21
@Data
22
public class PIDRecordEntry implements Cloneable {
23
    private String key;
24
    private String name;
25
    private String value;
26

27
    @Override
28
    public PIDRecordEntry clone() {
29
        try {
30
            return (PIDRecordEntry) super.clone();
1✔
NEW
31
        } catch (CloneNotSupportedException e) {
×
NEW
32
            throw new AssertionError();
×
33
        }
34
    }
35
}
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