gate_swap_export_test.rs 591 B

12345678910111213141516171819
  1. // mod export_excel_test;
  2. //
  3. // use tracing::{instrument, trace};
  4. // use derive::export_excel::ExportEnum;
  5. // use crate::export_excel_test::test_new_export;
  6. //
  7. //
  8. // const SYMBOL: &str = "TIA_USDT";
  9. //
  10. // // 测试获取Exchange实体
  11. // #[tokio::test]
  12. // #[instrument(level = "TRACE")]
  13. // async fn test_get_self_exchange() {
  14. // global::log_utils::init_log_with_trace();
  15. //
  16. // let mut export = test_new_export(ExportEnum::GateSwap).await;
  17. // let export_trades = export.export_trades("gate_swap_42", SYMBOL.to_string(), 0, 0, 1000).await;
  18. // trace!(?export_trades);
  19. // }