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

mybatis / mybatis-3 / 2510

30 Dec 2024 10:55AM UTC coverage: 87.394% (+0.08%) from 87.31%
2510

Pull #3108

github

web-flow
Merge d1dca2a2f into c6da404bd
Pull Request #3108: 101: Add support for immutable collection constructor creation

3639 of 4409 branches covered (82.54%)

223 of 243 new or added lines in 5 files covered. (91.77%)

1 existing line in 1 file now uncovered.

9588 of 10971 relevant lines covered (87.39%)

0.87 hits per line

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

71.43
/src/main/java/org/apache/ibatis/executor/resultset/PendingCreationMetaInfo.java
1
/*
2
 *    Copyright 2009-2024 the original author or authors.
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
 *       https://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
package org.apache.ibatis.executor.resultset;
17

18
/**
19
 * Used to keep track of specific argument types for pending creations
20
 *
21
 * @author Willie Scholtz
22
 */
23
final class PendingCreationMetaInfo {
24

25
  private final Class<?> argumentType;
26
  private final PendingCreationKey pendingCreationKey;
27

28
  PendingCreationMetaInfo(Class<?> argumentType, PendingCreationKey pendingCreationKey) {
1✔
29
    this.argumentType = argumentType;
1✔
30
    this.pendingCreationKey = pendingCreationKey;
1✔
31
  }
1✔
32

33
  Class<?> getArgumentType() {
NEW
34
    return argumentType;
×
35
  }
36

37
  PendingCreationKey getPendingCreationKey() {
38
    return pendingCreationKey;
1✔
39
  }
40

41
  @Override
42
  public String toString() {
NEW
43
    return "PendingCreationMetaInfo{" + "argumentType=" + argumentType + ", pendingCreationKey='" + pendingCreationKey
×
44
        + '\'' + '}';
45
  }
46
}
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