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
50
51
52
53
54
55
56
57
58
59
60
61
62
//! Macro which, given a variable and a block of code, executes the block of code and checks that the
//! variable has not changed.
//!
//! For instance, this can check that a function does not have side-effects.
/// Given a variable and a block of code, executes the block of code and checks that the variable has not
/// changed.
///
/// The given variable must implement Clone and Debug.
///
/// # Panics
///
/// Panics if data is modified with message "Data was modified where it should not have been".
///
/// # Example
///
///```
/// #[macro_use] extern crate assert_not_modified;
///
/// // This function returns Err but modifies x anyway. This is misleading.
/// fn modify_x_or_err(x: &mut i32) -> Result<(), String> {
/// *x = *x + 1;
/// Err("Something wrong happened !".to_owned())
/// }
///
/// // This test will expose the lying function :
/// assert!(std::panic::catch_unwind(|| {
/// let mut x = 3;
/// assert_not_modified!(x, modify_x_or_err(&mut x)); // Panics
/// })
/// .is_err());
/// ```