revue 2.71.1

A Vue-style TUI framework for Rust with CSS styling
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Boundary condition tests
//!
//! Tests for edge cases and boundary values including:
//! - Numeric limits (zero, max, overflow)
//! - Text boundaries (empty, unicode, long strings)
//! - Collection boundaries (empty, single item, index limits)

#[path = "boundary/collection_tests.rs"]
mod collection_tests;
#[path = "boundary/numeric_tests.rs"]
mod numeric_tests;
#[path = "boundary/text_tests.rs"]
mod text_tests;