1 2 3 4 5 6 7 8 9
use crate::Builder; #[test] fn generate_core_foundation() { Builder::with_builtin_config("CoreFoundation", "macosx") .expect("macosx sdk not found") .generate() .expect("generate failed"); }