//integration tests testing whole crate
#[test]fntest_encrypt_macro(){let decrypted:String=cryptify::encrypt_string!("Hello World");assert_eq!("Hello World", decrypted);}#[test]fntest_flow_macro(){//manually test for now with cargo expand
cryptify::flow_stmt!();assert_eq!(1,1);}