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

box / box-java-sdk-gen / #541

05 Sep 2025 02:31PM UTC coverage: 7.451% (-29.2%) from 36.66%
#541

push

other

web-flow
chore: release version 0.8.1 (#437)

1 of 1 new or added line in 1 file covered. (100.0%)

14652 existing lines in 1191 files now uncovered.

3737 of 50151 relevant lines covered (7.45%)

0.07 hits per line

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

0.0
/src/main/java/com/box/sdkgen/managers/chunkeduploads/PartAccumulator.java
1
package com.box.sdkgen.managers.chunkeduploads;
2

3
import com.box.sdkgen.internal.utils.Hash;
4
import com.box.sdkgen.schemas.uploadpart.UploadPart;
5
import java.util.List;
6

7
public class PartAccumulator {
8

9
  public final long lastIndex;
10

11
  public final List<UploadPart> parts;
12

13
  public final long fileSize;
14

15
  public final String uploadPartUrl;
16

17
  public final Hash fileHash;
18

19
  public PartAccumulator(
UNCOV
20
      long lastIndex, List<UploadPart> parts, long fileSize, String uploadPartUrl, Hash fileHash) {
×
UNCOV
21
    this.lastIndex = lastIndex;
×
UNCOV
22
    this.parts = parts;
×
UNCOV
23
    this.fileSize = fileSize;
×
UNCOV
24
    this.uploadPartUrl = uploadPartUrl;
×
UNCOV
25
    this.fileHash = fileHash;
×
UNCOV
26
  }
×
27

28
  public long getLastIndex() {
UNCOV
29
    return lastIndex;
×
30
  }
31

32
  public List<UploadPart> getParts() {
UNCOV
33
    return parts;
×
34
  }
35

36
  public long getFileSize() {
UNCOV
37
    return fileSize;
×
38
  }
39

40
  public String getUploadPartUrl() {
UNCOV
41
    return uploadPartUrl;
×
42
  }
43

44
  public Hash getFileHash() {
UNCOV
45
    return fileHash;
×
46
  }
47
}
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