qubit-value 0.7.6

Type-safe value container framework with unified abstractions for single values, multi-values, and named values with complete serde support
Documentation
/*******************************************************************************
 *
 *    Copyright (c) 2025 - 2026 Haixing Hu.
 *
 *    SPDX-License-Identifier: Apache-2.0
 *
 *    Licensed under the Apache License, Version 2.0.
 *
 ******************************************************************************/

use qubit_datatype::DataType;
use qubit_value::Value;

#[test]
fn test_value_setter_replaces_value_and_runtime_type() {
    let mut value = Value::Int32(10);
    value.set("ten").unwrap();

    assert_eq!(value.data_type(), DataType::String);
    assert_eq!(value.get_string().unwrap(), "ten");

    value.set_string("eleven".to_string()).unwrap();
    assert_eq!(value.get::<String>().unwrap(), "eleven");
}