"docs/pages/components/planner/README.md" did not exist on "2c3066bd5ddedfcb871fd8663d50fe1533f327fb"
mod.rs 938 Bytes
Newer Older
Ryan Olson's avatar
Ryan Olson committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// SPDX-License-Identifier: Apache-2.0

#![doc = include_str!("../../docs/testing.md")]

pub mod distributed;
pub mod events;
pub mod managers;
pub mod messenger;
pub mod offloading;
pub mod physical;
pub mod token_blocks;

// Re-export commonly used testing utilities
pub use distributed::TestSession;
pub use events::{EventsPipelineConfig, EventsPipelineConfigBuilder, EventsPipelineFixture};
pub use managers::{
    InstancePopulationResult, InstancePopulationSpec, MultiInstancePopulator,
    MultiInstancePopulatorBuilder, PopulatedInstances, TestManagerBuilder, TestRegistryBuilder,
    create_and_populate_manager, populate_manager_with_blocks,
};
pub use messenger::{MessengerPair, create_messenger_pair_tcp, create_messenger_tcp};
pub use physical::{TestAgent, TestAgentBuilder, TransferChecksums};
pub use token_blocks::*;