use crate::documents::BuildXML; use crate::xml_builder::*; #[derive(Debug, Clone)] pub struct Underline { val: String, } impl Underline { pub fn new(val: impl Into) -> Underline { Underline { val: val.into() } } } impl BuildXML for Underline { fn build(&self) -> Vec { XMLBuilder::new().underline(&self.val).build() } } #[cfg(test)] mod tests { use super::*; #[cfg(test)] use pretty_assertions::assert_eq; use std::str; #[test] fn test_underline() { let c = Underline::new("single"); let b = c.build(); assert_eq!(str::from_utf8(&b).unwrap(), r#""#); } }