Common/Testing/mod.rs
1//! # Testing Service
2//!
3//! This module defines the abstract contract for the Test service, which is
4//! responsible for managing test controllers, test runs, and test results,
5
6//! mirroring the `vscode.test` API.
7
8#![allow(non_snake_case, non_camel_case_types)]
9
10// --- Trait Definition ---
11pub mod TestController;