1 2 3 4 5 6 7 8 9 10 11
#[test] fn simple_test() { assert_eq!(2 + 2, 4); println!("This is a simple test"); } #[test] fn test_constants() { assert_eq!(rsproperties::PROP_VALUE_MAX, 92); println!("Constants test passed"); }