versatiles_container 4.10.0

A toolbox for converting, checking and serving map tiles in various formats.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Tile container mocks for testing
//!
//! This module provides mock implementations of tile readers and writers for testing purposes.
//!
//! ## Submodules
//! - `reader`: Contains mock implementations of tile readers.
//! - `writer`: Contains mock implementations of tile writers.
//!
//! ## Usage
//! These mocks can be used to simulate tile reading and writing operations in tests, allowing you to verify the behavior of your code without relying on actual tile data or I/O operations.

mod reader;
mod writer;

pub use reader::{MOCK_BYTES_JPG, MOCK_BYTES_PBF, MOCK_BYTES_PNG, MOCK_BYTES_WEBP, MockReader, MockReaderProfile};
pub use writer::MockWriter;