pub mod cafm_001_001_01;
pub mod cafm_001_001_04;
pub mod cafm_002_001_01;
pub mod cafm_002_001_04;
#[cfg(test)]
mod smoke {
#[test]
fn cafm_001_001_01() {
::std::thread::Builder::new().stack_size(64 << 20).spawn(|| {
let d = super::cafm_001_001_01::Document::default();
let xml = crate::to_xml(&d).expect("serialize");
assert!(xml.contains("Document"));
}).unwrap().join().unwrap();
}
#[test]
fn cafm_001_001_04() {
::std::thread::Builder::new().stack_size(64 << 20).spawn(|| {
let d = super::cafm_001_001_04::Document::default();
let xml = crate::to_xml(&d).expect("serialize");
assert!(xml.contains("Document"));
}).unwrap().join().unwrap();
}
#[test]
fn cafm_002_001_01() {
::std::thread::Builder::new().stack_size(64 << 20).spawn(|| {
let d = super::cafm_002_001_01::Document::default();
let xml = crate::to_xml(&d).expect("serialize");
assert!(xml.contains("Document"));
}).unwrap().join().unwrap();
}
#[test]
fn cafm_002_001_04() {
::std::thread::Builder::new().stack_size(64 << 20).spawn(|| {
let d = super::cafm_002_001_04::Document::default();
let xml = crate::to_xml(&d).expect("serialize");
assert!(xml.contains("Document"));
}).unwrap().join().unwrap();
}
}