1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use strong_xml::{XmlRead, XmlWrite};

use crate::__xml_test_suites;

#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "w:tcPr")]
pub struct TableCellProperty {}

impl TableCellProperty {}

__xml_test_suites!(
    TableCellProperty,
    TableCellProperty::default(),
    r#"<w:tcPr/>"#,
);