assertables 9.9.0

Assertables: assert macros for better testing, debugging, quality assurance, and runtime reliability.
Documentation
//! Assert for comparing floating-point 32-bit numbers within 2.0 * EPSILON.
//!
//! These macros are available:
//!
//! * [`assert_f32_eq!(a, b)`](macro@crate::assert_f32_eq) ≈ a = b (within 2ε)
//! * [`assert_f32_ne!(a, b)`](macro@crate::assert_f32_ne) ≈ a ≠ b (within 2ε)
//!
//! # Example
//!
//! ```rust
//! use assertables::*;
//!
//! let a: f32 = 1.0 / 3.0;
//! let b: f32 = 0.3333333;
//! assert_f32_eq!(a, b);
//!
//! let a: f32 = 1.0 / 3.0;
//! let b: f32 = 0.3333336;
//! assert_f32_ne!(a, b);
//! ```

#[cfg(test)]
pub const EQ: f32 = 1.0 / 3.0;
#[cfg(test)]
pub const EQ_LT: f32 = 0.3333333;
#[cfg(test)]
pub const EQ_GT: f32 = 0.3333334;
#[cfg(test)]
pub const LT: f32 = 0.3333331;
#[cfg(test)]
pub const GT: f32 = 0.3333336;

pub mod assert_f32_eq;
pub mod assert_f32_ge;
pub mod assert_f32_gt;
pub mod assert_f32_le;
pub mod assert_f32_lt;
pub mod assert_f32_ne;