#[ cfg(test) ]
mod standalone_basic_test
{
#[ test ]
fn test_basic_standalone_functionality()
{
#[ cfg(all(feature = "standalone_build", not(feature = "normal_build"))) ]
{
let _vec: test_tools ::Vec< i32 > = test_tools ::Vec ::new();
let _map: test_tools ::HashMap< String, i32 > = test_tools ::HashMap ::new();
let data = vec![1, 2, 3, 4, 5];
let _same_ptr = test_tools ::same_ptr(&data, &data);
let _same_size = test_tools ::same_size(&data, &data);
}
#[ cfg(not(all(feature = "standalone_build", not(feature = "normal_build")))) ]
{
let _vec: test_tools ::Vec< i32 > = test_tools ::Vec ::new();
let _map: test_tools ::HashMap< String, i32 > = test_tools ::HashMap ::new();
let data = vec![1, 2, 3, 4, 5];
let _same_ptr = test_tools ::same_ptr(&data, &data);
let _same_size = test_tools ::same_size(&data, &data);
}
}
}