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

leeonky / test-charm-java / 290

08 Sep 2025 03:25PM UTC coverage: 74.312% (-0.003%) from 74.315%
290

push

circleci

leeonky
Introduce PropertyWriterDecorator

10 of 25 new or added lines in 6 files covered. (40.0%)

20 existing lines in 10 files now uncovered.

8155 of 10974 relevant lines covered (74.31%)

0.74 hits per line

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

50.0
/bean-util/src/main/java/com/github/leeonky/util/PropertyReaderDecorator.java
1
package com.github.leeonky.util;
2

3
import java.util.List;
4

5
public class PropertyReaderDecorator<T> extends PropertyAccessorDecorator<T, PropertyReader<T>> implements PropertyReader<T> {
6

7
    public PropertyReaderDecorator(PropertyReader<T> reader) {
8
        super(reader);
1✔
9
    }
1✔
10

11
    @Override
12
    public Object getValue(T instance) {
NEW
13
        return accessor.getValue(instance);
×
14
    }
15

16
    @Override
17
    public PropertyReader<?> getPropertyChainReader(List<Object> chain) {
NEW
18
        return accessor.getPropertyChainReader(chain);
×
19
    }
20
}
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