mirror of
https://github.com/awfufu/traudit
synced 2026-03-01 05:29:44 +08:00
18 lines
375 B
Rust
18 lines
375 B
Rust
mod common;
|
|
use common::*;
|
|
|
|
#[tokio::test]
|
|
async fn test_tcp_normal() {
|
|
run_tcp_test("test_tcp_normal", None, false).await;
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn test_http_normal() {
|
|
run_http_test("test_http_normal", None, false, None, false, None).await;
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn test_https_normal() {
|
|
run_http_test("test_https_normal", None, true, None, false, None).await;
|
|
}
|