summaryrefslogtreecommitdiffstats
path: root/third_party/rust/rust_decimal/tests/macros.rs
blob: 39cf0edf60dde9bebd81ee38bfb3ec6a64ab9bc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#[macro_export]
macro_rules! assert_approx_eq {
    ($a:expr, $b:expr, $precision:expr) => {{
        let (a, b) = (&$a, &$b);
        let eps = Decimal::new(1, $precision);
        let abs = (*a - *b).abs();
        assert!(
            abs <= eps,
            "assertion failed: `(left ~= right)` \n   \
             left: `{:?}`,\n  \
             right: `{:?}`,\n \
             expect: `{:?}`,\n   \
             real: `{:?}`",
            *a,
            *b,
            eps,
            abs,
        );
    }};
    ($a:expr, $b:expr, $precision:expr, $($arg:tt)+) => {{
        let (a, b) = (&$a, &$b);
        let eps = Decimal::new(1, $precision);
        let abs = (*a - *b).abs();
        assert!(
            abs <= eps,
            "assertion failed: `(left ~= right)` \n   \
             left: `{:?}`,\n  \
             right: `{:?}`,\n \
             expect: `{:?}`,\n   \
             real: `{:?}`: {}",
            *a,
            *b,
            eps,
            abs,
            format_args!($($arg)+),
        );
    }};
}

#[macro_export]
macro_rules! either {
    ($result:expr, $legacy_result:expr) => {
        if cfg!(feature = "legacy-ops") {
            $legacy_result
        } else {
            $result
        }
    };
}