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

mybatis / mybatis-3 / #3891

20 Nov 2024 11:56AM UTC coverage: 87.283% (+0.1%) from 87.18%
#3891

Pull #3108

github

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

3650 of 4431 branches covered (82.37%)

257 of 281 new or added lines in 5 files covered. (91.46%)

24 existing lines in 1 file now uncovered.

9602 of 11001 relevant lines covered (87.28%)

0.87 hits per line

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

85.71
/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() {
34
    return argumentType;
1✔
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