1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
//! # EntiDB Testkit
//!
//! Test utilities for EntiDB.
//!
//! This crate provides:
//! - Test fixtures and database helpers
//! - Property-based test generators using proptest
//! - Golden test utilities for format verification
//! - Cross-crate integration test helpers
//! - Fuzz testing harnesses
//! - Stress testing utilities
//! - Cross-language test vectors
//! - Crash recovery testing harness
//!
//! ## Usage
//!
//! ```rust,ignore
//! use entidb_testkit::prelude::*;
//!
//! #[test]
//! fn test_with_database() {
//! with_temp_db(|db| {
//! let collection = db.collection("test");
//! // ... test operations
//! });
//! }
//! ```
//!
//! ## Crash Recovery Testing
//!
//! ```rust,ignore
//! use entidb_testkit::crash::CrashRecoveryHarness;
//!
//! let mut harness = CrashRecoveryHarness::with_temp_dir().unwrap();
//! let results = harness.run_all_tests();
//! assert!(harness.all_passed());
//! ```
/// Prelude module for convenient imports
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;