ic-test 0.4.0

This tool helps to organize IC Rust canister testing as well as cross-testing between ICP and EVM.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
service : ( ) -> {
  basic_fs_test : () -> ();
  compute_file_hash : (text) -> (text);
  do_fs_test : () -> (text);
  generate_random_fs : (nat64, nat64, nat64) -> (nat64);
  get_log : () -> (text) query;
  greet : (text) -> (text) query;
  read_file : (text) -> (text);
  scan_directory : (text) -> (text);
  test_create_dir_all : (text) -> ();
  test_read_dir : (text) -> (vec text);
  write_file : (text, text) -> ();
}