get_account_info_test.rs 246 B

12345678910
  1. use tracing::trace;
  2. use global::account_info;
  3. #[tokio::test]
  4. async fn get_account_info() {
  5. global::log_utils::init_log_with_trace();
  6. let account_info = account_info::get_account_info("../test_account.toml");
  7. trace!(?account_info);
  8. }