mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-24 11:41:02 +00:00
23 lines
543 B
Rust
23 lines
543 B
Rust
mod util;
|
|
use util::*;
|
|
|
|
#[test]
|
|
fn arrayvec05() -> TestResult {
|
|
test_default_generated_schema::<arrayvec05::ArrayVec<[i32; 16]>>("arrayvec")
|
|
}
|
|
|
|
#[test]
|
|
fn arrayvec05_string() -> TestResult {
|
|
test_default_generated_schema::<arrayvec05::ArrayString<[u8; 16]>>("arrayvec_string")
|
|
}
|
|
|
|
#[test]
|
|
fn arrayvec07() -> TestResult {
|
|
test_default_generated_schema::<arrayvec07::ArrayVec<i32, 16>>("arrayvec")
|
|
}
|
|
|
|
#[test]
|
|
fn arrayvec07_string() -> TestResult {
|
|
test_default_generated_schema::<arrayvec07::ArrayString<16>>("arrayvec_string")
|
|
}
|