use dharitri_sc::types::BigInt; use dharitri_sc_scenario::api::StaticApi; #[test] fn test_big_int_add() { let x = BigInt::::from(2); let y = BigInt::::from(3); assert_eq!(x + y, BigInt::::from(5)) }