reifydb_engine/run_tests/mod.rs
1// SPDX-License-Identifier: Apache-2.0
2// Copyright (c) 2025 ReifyDB
3
4//! Engine-side runner for first-class CREATE TEST / RUN TESTS. Compiles the test body in the active admin
5//! transaction and executes it; collects per-test results into the typed `result/` types the caller observes.
6//! Tests run inside the same transaction as the admin command, so test side effects are visible until the outer
7//! transaction commits or rolls back.
8
9pub mod result;
10pub(crate) mod run;