mirror of
https://github.com/mikkelam/fast-cli.git
synced 2025-12-19 21:34:05 +00:00
13 lines
392 B
Zig
13 lines
392 B
Zig
const std = @import("std");
|
|
|
|
test "all" {
|
|
// Core lib modules with tests
|
|
_ = @import("lib/fast.zig");
|
|
_ = @import("lib/bandwidth.zig");
|
|
_ = @import("lib/http_latency_tester.zig");
|
|
_ = @import("lib/workers/speed_worker.zig");
|
|
|
|
// Dedicated test modules
|
|
_ = @import("lib/tests/measurement_strategy_test.zig");
|
|
_ = @import("lib/tests/worker_manager_test.zig");
|
|
}
|