hiver-config 0.1.0-alpha.6

Configuration management for Hiver Framework. Hiver框架的配置管理。 Equivalent to: Spring Boot @ConfigurationProperties, @Value, Environment
Documentation
//! Tests for hiver-config
//! 测试模块

#[cfg(test)]
mod tests {
    #[test]
    fn smoke_test() {
        assert!(true, "hiver-config test infrastructure is working");
    }

    #[test]
    fn test_basic_math() {
        assert_eq!(2 + 2, 4);
    }

    #[test]
    fn test_vec_operations() {
        let v: Vec<i32> = vec![1, 2, 3];
        assert_eq!(v.len(), 3);
        assert_eq!(v.iter().sum::<i32>(), 6);
    }
}