test_help-rs 0.1.2

Test helpers for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// constants.rs : test_help-rs

//! Constants.

/// The default margin.
pub const DEFAULT_MARGIN : f64 = 0.0001;

/// The default multiplier.
pub const DEFAULT_MULTIPLIER : f64 = 0.000001;


// ///////////////////////////// end of file //////////////////////////// //