()
| 87 | |
| 88 | #[test] |
| 89 | fn it_calls_contract_functions() { |
| 90 | let bytes = include_bytes!("./../../target/wasm32-unknown-unknown/release/erc20_wit.wasm"); |
| 91 | let address = Account::random().to_string(); |
| 92 | |
| 93 | call_function(bytes, "construct", PARAMS_1).unwrap(); |
| 94 | call_function(bytes, "mint", ¶ms_2(&address)).unwrap(); |
| 95 | } |
| 96 | |
| 97 | #[test] |
| 98 | fn it_parses_string_params() { |
nothing calls this directly
no test coverage detected