dbnexus 0.2.0

An enterprise-grade database abstraction layer for Rust with built-in permission control and connection pooling
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (c) 2026 Kirky.X
//
// Licensed under the MIT License
// See LICENSE file in the project root for full license information.

//! Pool 单元测试
//!
//! 连接池模块的单元测试,覆盖以下场景:
//! - 连接池配置初始化测试
//! - 连接池最大连接数限制测试
//! - 连接超时处理测试
//! - 连接泄漏检测测试

pub mod db_pool_unit_tests;
pub mod pool_unit_tests;
pub mod session_unit_tests;