pub mod canm_001_001_02;
pub mod canm_001_001_05;
pub mod canm_002_001_02;
pub mod canm_002_001_05;
pub mod canm_003_001_02;
pub mod canm_003_001_05;
pub mod canm_004_001_02;
pub mod canm_004_001_05;
#[cfg(test)]
mod smoke {
#[test]
fn canm_001_001_02() {
::std::thread::Builder::new().stack_size(64 << 20).spawn(|| {
let d = super::canm_001_001_02::Document::default();
let xml = crate::to_xml(&d).expect("serialize");
assert!(xml.contains("Document"));
}).unwrap().join().unwrap();
}
#[test]
fn canm_001_001_05() {
::std::thread::Builder::new().stack_size(64 << 20).spawn(|| {
let d = super::canm_001_001_05::Document::default();
let xml = crate::to_xml(&d).expect("serialize");
assert!(xml.contains("Document"));
}).unwrap().join().unwrap();
}
#[test]
fn canm_002_001_02() {
::std::thread::Builder::new().stack_size(64 << 20).spawn(|| {
let d = super::canm_002_001_02::Document::default();
let xml = crate::to_xml(&d).expect("serialize");
assert!(xml.contains("Document"));
}).unwrap().join().unwrap();
}
#[test]
fn canm_002_001_05() {
::std::thread::Builder::new().stack_size(64 << 20).spawn(|| {
let d = super::canm_002_001_05::Document::default();
let xml = crate::to_xml(&d).expect("serialize");
assert!(xml.contains("Document"));
}).unwrap().join().unwrap();
}
#[test]
fn canm_003_001_02() {
::std::thread::Builder::new().stack_size(64 << 20).spawn(|| {
let d = super::canm_003_001_02::Document::default();
let xml = crate::to_xml(&d).expect("serialize");
assert!(xml.contains("Document"));
}).unwrap().join().unwrap();
}
#[test]
fn canm_003_001_05() {
::std::thread::Builder::new().stack_size(64 << 20).spawn(|| {
let d = super::canm_003_001_05::Document::default();
let xml = crate::to_xml(&d).expect("serialize");
assert!(xml.contains("Document"));
}).unwrap().join().unwrap();
}
#[test]
fn canm_004_001_02() {
::std::thread::Builder::new().stack_size(64 << 20).spawn(|| {
let d = super::canm_004_001_02::Document::default();
let xml = crate::to_xml(&d).expect("serialize");
assert!(xml.contains("Document"));
}).unwrap().join().unwrap();
}
#[test]
fn canm_004_001_05() {
::std::thread::Builder::new().stack_size(64 << 20).spawn(|| {
let d = super::canm_004_001_05::Document::default();
let xml = crate::to_xml(&d).expect("serialize");
assert!(xml.contains("Document"));
}).unwrap().join().unwrap();
}
}