1#[test] 2fn test_string() { 3 use crate::*; 4 let empty_string: String = string!(); 5 assert!(empty_string.is_empty()); 6 let hello_string: String = string!("Hello"); 7 assert_eq!(hello_string, "Hello"); 8}