mismall 2.0.0

Streaming Huffman compression library with AES-256-GCM encryption and archive support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Error condition tests
//!
//! Tests error handling, error contexts, and suggestions across all APIs.
//! Ensures proper error propagation and user-friendly error messages.

#[cfg(test)]
mod archive_errors;
#[cfg(test)]
mod compression_errors;
#[cfg(test)]
mod decompression_errors;
#[cfg(test)]
mod error_context_tests;
#[cfg(test)]
mod stream_errors;