Class: | ICSharpCode.SharpZipLib.Zip.Compression.DeflaterPending |
---|---|
Assembly: | ICSharpCode.SharpZipLib |
File(s): | C:\Users\Neil\Documents\Visual Studio 2015\Projects\icsharpcode\SZL_master\ICSharpCode.SharpZipLib\Zip\Compression\DeflaterPending.cs |
Covered lines: | 2 |
Uncovered lines: | 0 |
Coverable lines: | 2 |
Total lines: | 17 |
Line coverage: | 100% |
Method | Cyclomatic Complexity | Sequence Coverage | Branch Coverage |
---|---|---|---|
.ctor() | 1 | 100 | 100 |
# | Line | Line coverage | ||
---|---|---|---|---|
1 | namespace ICSharpCode.SharpZipLib.Zip.Compression | |||
2 | { | |||
3 | /// <summary> | |||
4 | /// This class stores the pending output of the Deflater. | |||
5 | /// | |||
6 | /// author of the original java version : Jochen Hoenicke | |||
7 | /// </summary> | |||
8 | public class DeflaterPending : PendingBuffer | |||
9 | { | |||
10 | /// <summary> | |||
11 | /// Construct instance with default buffer size | |||
12 | /// </summary> | |||
273 | 13 | public DeflaterPending() : base(DeflaterConstants.PENDING_BUF_SIZE) | ||
14 | { | |||
273 | 15 | } | ||
16 | } | |||
17 | } |